test #127
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: | |
branches: | |
- develop | |
- main | |
push: | |
branches: | |
- develop | |
- main | |
env: | |
DOTNET_VERSION: '6.x' | |
jobs: | |
run-samples: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-14] | |
dir: [ | |
'Annotations/Annotations/' | |
] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Setup Microsoft Core Fonts | |
working-directory: ${{ matrix.dir }} | |
run: | | |
sample_name=$(basename "$PWD") | |
if [ "${{ matrix.os }}" == 'ubuntu-latest' ]; then | |
case "$sample_name" in "AddHeaderFooter" | "AddElements" | "MakeDocWithCalGrayColorSpace" | "MakeDocWithCalRGBColorSpace" | "MakeDocWithDeviceNColorSpace" | "MakeDocWithICCBasedColorSpace" | "MakeDocWithIndexedColorSpace" | "MakeDocWithLabColorSpace" | "MakeDocWithSeparationColorSpace" | "ExtendedGraphicStates" | "AddGlyphs" | "AddUnicodeText") | |
echo 'ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true' | sudo debconf-set-selections | |
sudo apt-get install ttf-mscorefonts-installer | |
;; | |
esac | |
fi | |
- name: Build samples | |
working-directory: ${{ matrix.dir }} | |
run: | | |
sample_name=$(basename "$PWD") | |
if { [ "$sample_name" != "ConvertToOffice" ] && [ "$sample_name" != "CreateDocFromXPS" ]; } || [ "${{ matrix.os }}" != 'macos-14' ]; then | |
dotnet build -c Release *.csproj | |
else | |
echo "Not available on this os" | |
fi | |
- name: Run samples | |
working-directory: ${{matrix.dir}} | |
run: | | |
sample_name=$(basename "$PWD") | |
if [ "$sample_name" == "Redactions" ] && [ "${{matrix.os}}" == 'ubuntu-latest' ]; then | |
echo "Not available on this os" | |
else | |
if { [ "$sample_name" != "ConvertToOffice" ] && [ "$sample_name" != "CreateDocFromXPS" ]; } || [ "${{matrix.os}}" != 'macos-14' ]; then | |
if [ "${{matrix.os}}" == 'windows-latest' ]; then | |
if [ "$sample_name" == "DocToImages" ]; then | |
bin/Release/net6.0/$sample_name.exe -format=png $HOME/.nuget/packages/adobe.pdf.library.sampleinput/1.0.0/build/Resources/Sample_Input/ducky.pdf | |
else | |
bin/Release/net6.0/$sample_name.exe | |
fi | |
else | |
if [ "$sample_name" == "DocToImages" ]; then | |
dotnet bin/Release/net6.0/$sample_name.dll -format=png $HOME/.nuget/packages/adobe.pdf.library.sampleinput/1.0.0/build/Resources/Sample_Input/ducky.pdf | |
else | |
dotnet bin/Release/net6.0/$sample_name.dll | |
fi | |
fi | |
else | |
echo "Not available on this os" | |
fi | |
fi | |
- name: Set sample_name variable | |
id: set-sample-name | |
working-directory: ${{matrix.dir}} | |
run: echo "SAMPLE_NAME=$(basename "$PWD")" >> "$GITHUB_ENV" | |
- name: Save artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: output-${{ runner.os }}-${{ env.SAMPLE_NAME }} | |
path: | | |
${{matrix.dir}}*.docx | |
${{matrix.dir}}*.xslx | |
${{matrix.dir}}*.pptx | |
${{matrix.dir}}*.pdf | |
${{matrix.dir}}*.tif | |
${{matrix.dir}}*.png | |
${{matrix.dir}}*.jpg | |
${{matrix.dir}}*.eps | |
${{matrix.dir}}*.tiff | |
${{matrix.dir}}*.bmp | |
${{matrix.dir}}*.gif | |
${{matrix.dir}}*.json | |
${{matrix.dir}}*.txt | |
${{matrix.dir}}*.csv | |
- name: List files | |
run: | | |
ls ${{matrix.dir}} |