Skip to content

Commit

Permalink
update workflow on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
s2496214 committed Sep 5, 2024
1 parent 57bc1d9 commit eb126f9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,14 @@ jobs:
run: |
Copy-Item -Path "build-x86\src\Release\ncnn.dll" -Destination 'build-x86\tests'
cd build-x86; ctest -C Release --output-on-failure -j 4
- name: x64-simpleomp
run: |
mkdir build-x64-simpleomp; cd build-x64-simpleomp
cmake -T ${{ matrix.toolset-version }},host=x64 -A x64 -DNCNN_VULKAN=ON -DNCNN_SIMPLEOMP=ON -DNCNN_BUILD_TESTS=ON ..
cmake --build . --config Release -j 4
- name: x64-simpleomp-test
run: |
Copy-Item -Path "build-x64-simpleomp\src\Release\ncnn.dll" -Destination 'build-x64-simpleomp\tests'
cd build-x64-simpleomp; ctest -C Release --output-on-failure -j 4

0 comments on commit eb126f9

Please sign in to comment.