Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptainZippy committed Aug 25, 2024
1 parent 09886d4 commit 52a3dde
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,24 @@ jobs:
#
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-24.04, windows-latest]
build_type: [Release]
c_compiler: [gcc-12, clang-15, cl]
c_compiler: [gcc-14, clang-18, cl]
include:
- os: windows-latest
c_compiler: cl
cpp_compiler: cl-latest
- os: ubuntu-latest
c_compiler: gcc-12
cpp_compiler: g++-12
c_compiler: gcc-14
cpp_compiler: g++-14
- os: ubuntu-latest
c_compiler: clang-15
cpp_compiler: clang++-15
c_compiler: clang-18
cpp_compiler: clang++-18
exclude:
- os: windows-latest
c_compiler: gcc-12
c_compiler: gcc-14
- os: windows-latest
c_compiler: clang-15
c_compiler: clang-18
- os: ubuntu-latest
c_compiler: cl

Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Build
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} --verbose
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}

- name: Test
working-directory: ${{ steps.strings.outputs.build-output-dir }}
Expand Down

0 comments on commit 52a3dde

Please sign in to comment.