Skip to content

Commit f3a11cc

Browse files
committed
make this consistent
1 parent 53258d9 commit f3a11cc

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/programming_team_code_ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,14 @@ jobs:
7878
runs-on: ubuntu-latest
7979
steps:
8080
- uses: actions/checkout@v4
81-
- name: Set up LLVM repository
82-
run: wget -qO- https://apt.llvm.org/llvm.sh | sudo bash -s -- 22
83-
- name: Install dependencies
84-
run: sudo apt update && sudo apt install -y clang-22
81+
- name: Install LLVM
82+
run: |
83+
wget https://apt.llvm.org/llvm.sh
84+
chmod +x llvm.sh
85+
sudo ./llvm.sh 22
86+
- name: Verify
87+
run: |
88+
clang-22 --version
8589
- name: g++ with clang
8690
run: make --directory=tests/ compile_clang
8791

0 commit comments

Comments
 (0)