We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60e88d1 commit 9d32660Copy full SHA for 9d32660
.github/workflows/test-opencvsharp.yml
@@ -59,7 +59,11 @@ jobs:
59
60
- name: Run Test
61
run: |
62
- export LD_LIBRARY_PATH=${{ github.workspace }}/opencvsharp/lib:$LD_LIBRARY_PATH
+ if [[ "${{ matrix.os }}" == osx* ]]; then
63
+ export DYLD_LIBRARY_PATH=${{ github.workspace }}/opencvsharp/lib:$DYLD_LIBRARY_PATH
64
+ else
65
+ export LD_LIBRARY_PATH=${{ github.workspace }}/opencvsharp/lib:$LD_LIBRARY_PATH
66
+ fi
67
cd test && ./test
68
69
- name: Upload Artifacts
0 commit comments