Skip to content

Commit

Permalink
reduce matrix complexity
Browse files Browse the repository at this point in the history
can be re-added if new containers are added
  • Loading branch information
forgottosave committed Oct 16, 2024
1 parent ac31c37 commit df97f5a
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@ jobs:
fedora-clang:
strategy:
matrix:
container: ["fedora:latest"]
buildType: [Debug, Release]
runs-on: ubuntu-latest
container: ${{ matrix.container }}
container: "fedora:latest"
steps:
- name: Update package list
run: dnf update -y
Expand All @@ -44,10 +43,9 @@ jobs:
fedora-gcc:
strategy:
matrix:
container: ["fedora:latest"]
buildType: [Debug, Release]
runs-on: ubuntu-latest
container: ${{ matrix.container }}
container: "fedora:latest"
steps:
- name: Update package list
run: dnf update -y
Expand Down Expand Up @@ -100,12 +98,9 @@ jobs:
ctest-options: ${{ env.CTEST_OPTIONS }}

clang-tidy:
strategy:
matrix:
container: ["fedora:latest"]
buildType: [Debug]
runs-on: ubuntu-latest
container: ${{ matrix.container }}
container: "fedora:latest"
buildType: Debug
steps:
- name: Update package list
run: sudo dnf update -y
Expand All @@ -130,7 +125,7 @@ jobs:

clang-format:
runs-on: ubuntu-latest
container: fedora:latest
container: "fedora:latest"
steps:
- name: Update package list
run: sudo dnf update -y
Expand All @@ -142,12 +137,9 @@ jobs:
run: bash scripts/check_clang_format.sh

cppcheck:
strategy:
matrix:
container: ["fedora:latest"]
buildType: [Release]
runs-on: ubuntu-latest
container: ${{ matrix.container }}
container: "fedora:latest"
buildType: Release
steps:
- name: Update package list
run: dnf update -y
Expand Down

0 comments on commit df97f5a

Please sign in to comment.