Skip to content

Commit 1d72204

Browse files
committed
Update version of clang used.
The runners used by github have been updated to ubuntu 24.04.1, so let's use the default compiler versions.
1 parent 36b455d commit 1d72204

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
compiler: [clang++-15, g++]
19+
compiler: [clang++, g++]
2020
type: [Debug, Release]
2121

2222
steps:
@@ -29,7 +29,7 @@ jobs:
2929
run: echo "DIR=../Build" >> "$GITHUB_OUTPUT"
3030

3131
- name: Install dependencies
32-
run: sudo apt update && sudo apt install -y cmake ninja-build ccache lcov gcc g++ clang-15
32+
run: sudo apt update && sudo apt install -y cmake ninja-build ccache lcov gcc g++ clang
3333

3434
- name: Configure
3535
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

Comments
 (0)