Skip to content

Commit

Permalink
Added CMake MinGW-w64 job to GHA.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lastique committed Dec 15, 2024
1 parent ddb9868 commit 5535c17
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -557,9 +557,13 @@ jobs:
cxxstd: "11-gnu,14-gnu,17-gnu,2a-gnu"
os: windows-2019

- name: CMake tests
- name: CMake MSVC tests
cmake_tests: 1
os: windows-2022
- name: CMake MinGW-w64 tests
cmake_tests: 1
os: windows-2022
cmake_generator: "MinGW Makefiles"

timeout-minutes: 60
runs-on: ${{matrix.os}}
Expand Down Expand Up @@ -621,6 +625,10 @@ jobs:
- name: Run CMake tests
if: matrix.cmake_tests
run: |
if not "${{matrix.cmake_generator}}" == "" (
set "CMAKE_GENERATOR=${{matrix.cmake_generator}}"
echo Using CMAKE_GENERATOR=%CMAKE_GENERATOR%
)
cd boost-root
mkdir __build_static__
cd __build_static__
Expand Down

0 comments on commit 5535c17

Please sign in to comment.