Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
RohanKrMahato committed Dec 4, 2024
1 parent ed78cab commit b286415
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/windows-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,14 @@ jobs:
fail-fast: false
matrix:
include:
- { sys: mingw32 }
- { sys: mingw64 }
- { sys: ucrt64 }
- { sys: clang64 }
- { sys: mingw32, build_type: Debug }
- { sys: mingw32, build_type: Release }
- { sys: mingw64, build_type: Debug }
- { sys: mingw64, build_type: Release }
- { sys: ucrt64, build_type: Debug }
- { sys: ucrt64, build_type: Release }
- { sys: clang64, build_type: Debug }
- { sys: clang64, build_type: Release }

steps:
- name: Check out the repository
Expand Down Expand Up @@ -111,14 +115,19 @@ jobs:
working-directory: ./build
shell: cmd
run: |
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DOPTION_FORK_SAFE=OFF -DOPTION_BUILD_PLUGINS_BACKTRACE=OFF ..
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DOPTION_FORK_SAFE=OFF -DOPTION_BUILD_PLUGINS_BACKTRACE=OFF ..
- name: Build with CMake
working-directory: ./build
shell: cmd
run: |
cmake --build .
- name: Run CTest
working-directory: ./build
run: |
ctest -j$(getconf _NPROCESSORS_ONLN) --timeout 5400 --output-on-failure -C ${{ matrix.build_type }}
shell: bash

windows-distributable:
name: Windows Distributable Dispatch
Expand Down

0 comments on commit b286415

Please sign in to comment.