Skip to content

Commit

Permalink
Disable Redactions sample on Ubuntu
Browse files Browse the repository at this point in the history
- The Redactions sample throws an exception on the Ubuntu GitHub
  Actions runner. However, when it runs on a CentOS machine, the sample
  does not throw an exception.
  • Loading branch information
datalogics-saharay committed Mar 11, 2024
1 parent 29e54f6 commit 805b58e
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions .github/workflows/test-dotnet-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
if { [ "$sample_name" != "ConvertToOffice" ] && [ "$sample_name" != "CreateDocFromXPS" ]; } || [ "${{ matrix.os }}" != 'macos-14' ]; then
dotnet build -c Release *.csproj
else
echo "Not available on this os"
echo ""
fi
- name: List files
run: |
Expand All @@ -138,20 +138,24 @@ jobs:
run: |
sample_name=$(basename "$PWD")
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
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
bin/Release/net6.0/$sample_name.exe
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
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
echo "Not available on this os"
fi
else
echo "Not available on this os"
fi

0 comments on commit 805b58e

Please sign in to comment.