Skip to content

Commit 1657acb

Browse files
committed
chore: fix broken action
1 parent a5190d2 commit 1657acb

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/cpp-clang.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: C/C++ CI
1+
name: C/C++ CI (Clang)
22

33
on:
44
push:
@@ -12,9 +12,11 @@ jobs:
1212
runs-on: ubuntu-22.04
1313

1414
steps:
15-
- name: update
15+
- name: Update
1616
if: ${{ env.ACT }}
17-
run: sudo apt -y update && sudo apt -y install python3 && sudo apt -y install clang && sudo apt -y install cmake
17+
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
1820
- name: Install pip3
1921
if: ${{ env.ACT }}
2022
run: curl https://bootstrap.pypa.io/get-pip.py >get-pip.py && python3 get-pip.py

0 commit comments

Comments
 (0)