Skip to content

Commit 627e416

Browse files
committed
Remove use of specific clang version
Ubuntu-latest has updated in github actions so no need to make sure we are using at least version 15.
1 parent f6a70cd commit 627e416

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
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
compiler: [clang++-15, g++]
20+
compiler: [clang++, g++]
2121
type: [Debug, Release]
2222

2323
steps:
@@ -26,7 +26,7 @@ jobs:
2626
submodules: true
2727

2828
- name: Install dependencies
29-
run: sudo apt update && sudo apt install -y cmake ninja-build gcc g++ clang-15
29+
run: sudo apt update && sudo apt install -y cmake ninja-build gcc g++ clang
3030

3131
- name: Configure
3232
run: cmake -GNinja -H. -B../Build -DINCH_UNIT_TESTS=ON -DCMAKE_CXX_COMPILER=/usr/bin/${{ matrix.compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.type }}

0 commit comments

Comments
 (0)