We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36b455d commit 1d72204Copy full SHA for 1d72204
.github/workflows/linux.yml
@@ -16,7 +16,7 @@ jobs:
16
runs-on: ubuntu-latest
17
strategy:
18
matrix:
19
- compiler: [clang++-15, g++]
+ compiler: [clang++, g++]
20
type: [Debug, Release]
21
22
steps:
@@ -29,7 +29,7 @@ jobs:
29
run: echo "DIR=../Build" >> "$GITHUB_OUTPUT"
30
31
- name: Install dependencies
32
- run: sudo apt update && sudo apt install -y cmake ninja-build ccache lcov gcc g++ clang-15
+ run: sudo apt update && sudo apt install -y cmake ninja-build ccache lcov gcc g++ clang
33
34
- name: Configure
35
run: cmake -GNinja -H. -B${{ steps.build_dir.outputs.DIR }} -DNDR_UNIT_TESTS=ON -DCMAKE_CXX_COMPILER=/usr/bin/${{ matrix.compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.type }} -DNDR_CODE_COVERAGE=ON
0 commit comments