Skip to content

Commit

Permalink
More fighting with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rHermes committed Apr 4, 2024
1 parent 7c56f0c commit 2d7b319
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,32 +25,28 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
build_type: [Release]
c_compiler: [gcc, clang, cl]
cpp_compiler: [g++-13, clang++-15, cl]
include:
- os: windows-latest
c_compiler: cl
cpp_compiler: cl
- os: ubuntu-latest
c_compiler: gcc
cpp_compiler: g++
c_compiler: gcc-13
cpp_compiler: g++-13
- os: ubuntu-latest
c_compiler: clang
cpp_compiler: clang++
c_compiler: clang-15
cpp_compiler: clang++-15
exclude:
- os: windows-latest
c_compiler: gcc
cpp_compiler: g++-13
- os: windows-latest
c_compiler: clang
cpp_compiler: clang++-15
- os: ubuntu-latest
c_compiler: cl
cpp_compiler: cl

steps:
- uses: actions/checkout@v3

- uses: mjp41/workaround8649@c8550b715ccdc17f89c8d5c28d7a48eeff9c94a8
with:
os: ${{ matrix.os }}

- name: Set reusable strings
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
id: strings
Expand Down

0 comments on commit 2d7b319

Please sign in to comment.