Skip to content

Commit 0d49b27

Browse files
committed
for consistency
1 parent f3a11cc commit 0d49b27

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/programming_team_code_ci.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
chmod +x llvm.sh
6060
sudo ./llvm.sh 22
6161
- name: Install dependencies
62-
run: sudo apt update && sudo apt install -y clang-tidy-22
62+
run: sudo apt install -y clang-tidy-22
6363
- name: Verify
6464
run: |
6565
clang-22 --version
@@ -100,12 +100,17 @@ jobs:
100100
runs-on: ubuntu-latest
101101
steps:
102102
- uses: actions/checkout@v4
103-
- name: Install texlive, rename, nodejs, npm, clang
103+
- name: Install texlive, rename, nodejs, npm
104104
run: |
105-
sudo apt update
106105
sudo apt install texlive texlive-latex-extra rename nodejs npm
107-
wget -qO- https://apt.llvm.org/llvm.sh | sudo bash -s -- 22
108-
sudo apt update && sudo apt install -y clang-22
106+
- name: Install LLVM
107+
run: |
108+
wget https://apt.llvm.org/llvm.sh
109+
chmod +x llvm.sh
110+
sudo ./llvm.sh 22
111+
- name: Verify
112+
run: |
113+
clang-22 --version
109114
- name: build pdf
110115
run: make --directory=tests/ build_pdf
111116
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)