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 a5190d2 commit 1657acbCopy full SHA for 1657acb
.github/workflows/cpp-clang.yml
@@ -1,4 +1,4 @@
1
-name: C/C++ CI
+name: C/C++ CI (Clang)
2
3
on:
4
push:
@@ -12,9 +12,11 @@ jobs:
12
runs-on: ubuntu-22.04
13
14
steps:
15
- - name: update
+ - name: Update
16
if: ${{ env.ACT }}
17
- run: sudo apt -y update && sudo apt -y install python3 && sudo apt -y install clang && sudo apt -y install cmake
+ run: sudo apt -y update && sudo apt -y install python3 clang cmake
18
+ - name: Install libc++
19
+ run: sudo apt -y install libc++-14-dev libc++abi-14-dev
20
- name: Install pip3
21
22
run: curl https://bootstrap.pypa.io/get-pip.py >get-pip.py && python3 get-pip.py
0 commit comments