We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f61ebdd commit 86d0f13Copy full SHA for 86d0f13
.github/workflows/test-opencvsharp.yml
@@ -58,7 +58,7 @@ jobs:
58
- name: Build Test
59
run: |
60
cd test
61
- gcc test.c -L../opencvsharp/lib -lOpenCvSharpExtern -o test
+ gcc test.c -L../opencvsharp/lib -lOpenCvSharpExtern -o test.exe
62
63
- name: Run Test
64
@@ -69,10 +69,10 @@ jobs:
69
else
70
export LD_LIBRARY_PATH=${{ github.workspace }}/opencvsharp/lib:$LD_LIBRARY_PATH
71
fi
72
- cd test && ./test
+ cd test && ./test.exe
73
74
- name: Upload Artifacts
75
uses: actions/upload-artifact@v4
76
with:
77
name: test-${{ matrix.os }}-${{ matrix.arch }}
78
- path: test
+ path: test.exe
0 commit comments