Skip to content

Commit

Permalink
Merge f8e847f into 6af1580
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge committed Apr 24, 2024
2 parents 6af1580 + f8e847f commit dbecf82
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 dbecf82

Please sign in to comment.