summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Gräsman <kim.grasman@gmail.com>2021-12-05 13:37:04 +0100
committerKim Gräsman <kim.grasman@gmail.com>2021-12-05 13:58:23 +0100
commitfbd921d6640bf1b18fe5a8a895636215367eb6b9 (patch)
tree7d33bdd01b483819a59dbe10277c9152c25fe3ff
parent8d1a3dd235ee528ba5aa86562bdd4fdd80677b71 (diff)
Pin CI to LLVM 13 for clang_13 branch0.17
The packages work as expected in LLVM 13, so remove workarounds for broken dependencies.
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 1 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 283c69f..acecc08 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,7 +15,7 @@ jobs:
fail-fast: false
env:
- LLVM_TAG:
+ LLVM_TAG: -13
steps:
- name: Install prerequisites
@@ -33,11 +33,6 @@ jobs:
sudo apt install -y libclang$LLVM_TAG-dev
sudo apt install -y clang$LLVM_TAG
- - name: Broken packaging workaround
- run: |
- sudo touch /usr/lib/llvm-14/lib/libclang-14.so.14.0.0
- sudo touch /usr/lib/llvm-14/bin/llvm-omp-device-info
-
- name: Check out default branch
uses: actions/checkout@v2