Skip to content

Commit 613817c

Browse files
authored
Apply special treatment for clang 17
1 parent b32ce1b commit 613817c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ jobs:
3232
- uses: actions/checkout@v3
3333
with:
3434
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
3542
- name: Install Gcovr
3643
if: matrix.config.coverage
3744
run: |

0 commit comments

Comments
 (0)