Skip to content

Commit

Permalink
github actions: try clang 14
Browse files Browse the repository at this point in the history
  • Loading branch information
nunoplopes committed Mar 20, 2022
1 parent 59fa32f commit 68a527e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
compiler: [g++-10, g++-11, clang++-12, clang++-13]
compiler: [g++-10, g++-11, clang++-13, clang++-14]
build_type: [Release, Debug]
include:
- os: macos-latest
Expand All @@ -29,8 +29,9 @@ jobs:
run: |
wget -O- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-13 main"
sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-14 main"
sudo apt-get update
sudo apt-get install z3 re2c ninja-build g++-11 clang++-13
sudo apt-get install z3 re2c ninja-build g++-11 clang++-13 clang++-14
- name: Install dependencies (MacOS)
if: runner.os == 'macOS'
Expand Down

0 comments on commit 68a527e

Please sign in to comment.