We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b32ce1b commit 613817cCopy full SHA for 613817c
.github/workflows/ci.yml
@@ -32,6 +32,13 @@ jobs:
32
- uses: actions/checkout@v3
33
with:
34
submodules: 'true'
35
+ # If Clang 17, install a newer version of libc++ and libc++abi.
36
+ - name: Install libc++
37
+ if: matrix.config.tag == 'llvm-17'
38
+ run: |
39
+ set -x
40
+ sudo apt-get install -y libc++-dev libc++1 libc++abi-dev libc++abi1
41
+ find /usr/lib/x86_64-linux-gnu/ -name libc++.so* || true
42
- name: Install Gcovr
43
if: matrix.config.coverage
44
run: |
0 commit comments