We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0977c2 commit a78ffb9Copy full SHA for a78ffb9
.github/workflows/test-opencvsharp.yml
@@ -58,7 +58,12 @@ jobs:
58
- name: Build Test
59
run: |
60
cd test
61
- gcc test.c -L../opencvsharp/lib -lOpenCvSharpExtern -o test.exe
+ if [[ "${{ matrix.arch }}" == "arm64" && "${{ matrix.os }}" == win* ]]; then
62
+ gcc test.c -L../opencvsharp/lib -lOpenCvSharpExtern -o test.exe --target=aarch64-w64-mingw32
63
+ else
64
+ # For x64 architecture
65
+ gcc test.c -L../opencvsharp/lib -lOpenCvSharpExtern -o test.exe
66
+ fi
67
ls -lR
68
69
- name: Run Test
@@ -77,4 +82,4 @@ jobs:
77
82
uses: actions/upload-artifact@v4
78
83
with:
79
84
name: test-${{ matrix.os }}-${{ matrix.arch }}
80
- path: test.exe
85
+ path: test
0 commit comments