We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21d2e84 commit 436277fCopy full SHA for 436277f
1 file changed
.github/workflows/ci.yml
@@ -42,10 +42,13 @@ jobs:
42
cd build
43
cmake ${{ matrix.cmake_options }} ${{ matrix.macos_cmake_options }} ..
44
cmake --build .
45
+ - name: Prepare Test
46
+ if: ${{ matrix.os == 'ubuntu-latest' }} # only ubuntu does crosscompile with MinGW toolchain
47
+ run: |
48
+ cp /usr/x86_64-w64-mingw32/lib/libwinpthread-1.dll build/test/
49
- name: Test
50
run: |
51
- cp /usr/x86_64-w64-mingw32/lib/libwinpthread-1.dll test/ || true # used only for MinGW tests, ok to fail for other cases
52
ctest --output-on-failure
53
fuzzing_build:
54
runs-on: ubuntu-latest
0 commit comments