Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add clang-13 to CI #335

Open
wants to merge 1 commit into
base: 1.4
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ jobs:
- name: build-ubuntu-clang12
CXX: clang++-12
INSTALL_EXTRA: clang-12
- name: build-ubuntu-clang13
CXX: clang++-13
ADD_LLVM_REPO: true
INSTALL_EXTRA: clang-13
- name: build-ubuntu-icpc
CXX: icpc
INSTALL_ONEAPI: true
Expand All @@ -52,6 +56,11 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: true
- name: add LLVM APT repo
if: matrix.ADD_LLVM_REPO
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'
- name: install OneAPI
if: ${{ matrix.INSTALL_ONEAPI }}
run: |
Expand Down