Skip to content

Commit 86d0f13

Browse files
committed
add .exe
1 parent f61ebdd commit 86d0f13

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test-opencvsharp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Build Test
5959
run: |
6060
cd test
61-
gcc test.c -L../opencvsharp/lib -lOpenCvSharpExtern -o test
61+
gcc test.c -L../opencvsharp/lib -lOpenCvSharpExtern -o test.exe
6262
6363
- name: Run Test
6464
run: |
@@ -69,10 +69,10 @@ jobs:
6969
else
7070
export LD_LIBRARY_PATH=${{ github.workspace }}/opencvsharp/lib:$LD_LIBRARY_PATH
7171
fi
72-
cd test && ./test
72+
cd test && ./test.exe
7373
7474
- name: Upload Artifacts
7575
uses: actions/upload-artifact@v4
7676
with:
7777
name: test-${{ matrix.os }}-${{ matrix.arch }}
78-
path: test
78+
path: test.exe

0 commit comments

Comments
 (0)