Skip to content

Commit

Permalink
[cicd] Update clang pipeline to version 18
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge committed Sep 22, 2024
1 parent b27cebb commit 11dba0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
include:
- { os: 'ubuntu-latest', cxx: 'clang++-17', cc: 'clang-17', generator: 'Unix Makefiles', packages: 'clang-17' }
- { os: 'ubuntu-latest', cxx: 'clang++-18', cc: 'clang-18', generator: 'Unix Makefiles', packages: 'clang-18' }
- { os: 'ubuntu-latest', cxx: 'g++-13', cc: 'gcc-13', generator: 'Unix Makefiles', packages: 'g++-13' }
- { os: 'windows-latest', cxx: 'cl', cc: 'cl', generator: 'Ninja', config: 'Debug' }
- { os: 'windows-latest', cxx: 'cl', cc: 'cl', generator: 'Ninja', config: 'Release' }
Expand All @@ -40,15 +40,15 @@ jobs:
sudo apt upgrade
sudo apt install '${{ matrix.packages }}'
- name: 'Install: Clang'
if: ${{ matrix.cxx == 'clang++-17' }}
if: ${{ matrix.cxx == 'clang++-18' }}
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt update
sudo apt upgrade
sudo apt install g++-13
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 17 all
sudo ./llvm.sh 18 all
- name: 'Configure'
env:
CXX: '${{ matrix.cxx }}'
Expand Down

0 comments on commit 11dba0b

Please sign in to comment.