APDFL-5453: Add CI for .NET Framework samples with GitHub Actions #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-samples | |
on: | |
pull_request: | |
push: | |
branches: [ develop, main ] | |
jobs: | |
build-and-run-samples: | |
runs-on: windows-2019 | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
fail-fast: false | |
matrix: | |
dir: [ | |
'Annotations/Annotations/', | |
'Annotations/InkAnnotations/', | |
'Annotations/LinkAnnotation/', | |
'Annotations/PolygonAnnotations/', | |
'Annotations/PolyLineAnnotations/', | |
'ContentCreation/AddElements/', | |
'ContentCreation/AddHeaderFooter/', | |
'ContentCreation/Clips/', | |
'ContentCreation/CreateBookmarks/', | |
'ContentCreation/GradientShade/', | |
'ContentCreation/MakeDocWithCalGrayColorSpace/', | |
'ContentCreation/MakeDocWithCalRGBColorSpace/', | |
'ContentCreation/MakeDocWithDeviceNColorSpace/', | |
'ContentCreation/MakeDocWithICCBasedColorSpace/', | |
'ContentCreation/MakeDocWithIndexedColorSpace/', | |
'ContentCreation/MakeDocWithLabColorSpace/', | |
'ContentCreation/MakeDocWithSeparationColorSpace/', | |
'ContentCreation/NameTrees/', | |
'ContentCreation/NumberTrees/', | |
'ContentCreation/RemoteGoToActions/', | |
'ContentCreation/WriteNChannelTiff/', | |
'ContentModification/Action/', | |
'ContentModification/AddCollection/', | |
'ContentModification/ChangeLayerConfiguration/', | |
'ContentModification/ChangeLinkColors/', | |
'ContentModification/CreateLayer/', | |
'ContentModification/ExtendedGraphicStates/', | |
'ContentModification/FlattenTransparency/', | |
'ContentModification/LaunchActions/', | |
'ContentModification/MergePDF/', | |
'ContentModification/PageLabels/', | |
'ContentModification/PDFObject/', | |
'ContentModification/UnderlinesAndHighlights/', | |
'ContentModification/Watermark/', | |
'Display/DisplayPDF/', | |
'Display/DotNETViewer/', | |
'Display/DotNETViewerComponent/', | |
'Display/PDFObjectExplorer/', | |
'DocumentConversion/ColorConvertDocument/', | |
'DocumentConversion/ConvertToOffice/', | |
'DocumentConversion/CreateDocFromXPS/', | |
'DocumentConversion/Factur-XConverter/', | |
'DocumentConversion/PDFAConverter/', | |
'DocumentConversion/PDFXConverter/', | |
'DocumentConversion/ZUGFeRDConverter/', | |
'DocumentOptimization/PDFOptimize/', | |
'Images/DocToImages/', | |
'Images/DrawSeparations/', | |
'Images/DrawToBitmap/', | |
'Images/EPSSeparations/', | |
'Images/GetSeparatedImages/', | |
'Images/ImageEmbedICCProfile/', | |
'Images/ImageExport/', | |
'Images/ImageExtraction/', | |
'Images/ImageFromStream/', | |
'Images/ImageImport/', | |
'Images/ImageResampling/', | |
'Images/ImageSoftMask/', | |
'Images/OutputPreview/', | |
'Images/RasterizePage/', | |
'InformationExtraction/ListBookmarks/', | |
'InformationExtraction/ListInfo/', | |
'InformationExtraction/ListLayers/', | |
'InformationExtraction/ListPaths/', | |
'InformationExtraction/Metadata/', | |
'OpticalCharacterRecognition/AddTextToDocument/', | |
'OpticalCharacterRecognition/AddTextToImage/', | |
'Other/MemoryFileSystem/', | |
'Other/StreamIO/', | |
'Printing/PrintPDF/', | |
'Printing/PrintPDFGUI/', | |
'Security/AddRegexRedaction/', | |
'Security/Redactions/', | |
'Text/AddGlyphs/', | |
'Text/AddUnicodeText/', | |
'Text/AddVerticalText/', | |
'Text/ExtractAcroFormFieldData/', | |
'Text/ExtractCJKTextByPatternMatch/', | |
'Text/ExtractTextByPatternMatch/', | |
'Text/ExtractTextByRegion/', | |
'Text/ExtractTextFromAnnotations/', | |
'Text/ExtractTextFromMultiRegions/', | |
'Text/ExtractTextPreservingStyleAndPositionInfo/', | |
'Text/ListWords/', | |
'Text/RegexExtractText/', | |
'Text/RegexTextSearch/', | |
'Text/TextExtract/' | |
] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
- name: Print PATH variable | |
run: echo $PATH | |
- name: Setup NuGet.exe | |
uses: nuget/setup-nuget@v2 | |
- name: Install NuGet packages | |
working-directory: ${{ matrix.dir }} | |
run: | | |
sample_name=$(basename "$PWD") | |
echo "Installing NuGet packages..." | |
nuget.exe restore $sample_name.csproj | |
- name: Build samples | |
working-directory: ${{ matrix.dir }} | |
run: | | |
sample_name=$(basename "$PWD") | |
echo "Building $sample_name sample..." | |
msbuild.exe $sample_name.csproj //p:Configuration=Release //p:Platform=x64 |