We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6125a37 commit 7d58e39Copy full SHA for 7d58e39
.github/workflows/ci.yaml
@@ -42,6 +42,10 @@ jobs:
42
- name: build-ubuntu-clang12
43
CXX: clang++-12
44
INSTALL_EXTRA: clang-12
45
+ - name: build-ubuntu-clang13
46
+ CXX: clang++-13
47
+ ADD_LLVM_REPO: true
48
+ INSTALL_EXTRA: clang-13
49
- name: build-ubuntu-icpc
50
CXX: icpc
51
INSTALL_ONEAPI: true
@@ -52,6 +56,11 @@ jobs:
52
56
- uses: actions/checkout@v2
53
57
with:
54
58
submodules: true
59
+ - name: add LLVM APT repo
60
+ if: matrix.ADD_LLVM_REPO
61
+ run: |
62
+ wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
63
+ sudo add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-13 main'
55
64
- name: install OneAPI
65
if: ${{ matrix.INSTALL_ONEAPI }}
66
run: |
0 commit comments