Skip to content

Commit

Permalink
Remove use of specific clang version
Browse files Browse the repository at this point in the history
Ubuntu-latest has updated in github actions so no need to make sure we
are using at least version 15.
  • Loading branch information
php1ic committed Feb 14, 2025
1 parent f6a70cd commit 627e416
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [clang++-15, g++]
compiler: [clang++, g++]
type: [Debug, Release]

steps:
Expand All @@ -26,7 +26,7 @@ jobs:
submodules: true

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

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

0 comments on commit 627e416

Please sign in to comment.