Skip to content

Commit 058fc59

Browse files
committed
pull llvm out of gitlab actions since we're not using it currently
1 parent 32bc2fe commit 058fc59

4 files changed

Lines changed: 40 additions & 40 deletions

File tree

.github/workflows/cargo-check.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -73,19 +73,19 @@ jobs:
7373
with:
7474
toolchain: stable
7575

76-
- name: Install LLVM (Ubuntu Only)
77-
if: ${{ matrix.os == 'ubuntu-24.04' }}
78-
# See: https://apt.llvm.org/
79-
# Last line: https://gitlab.com/taricorp/llvm-sys.rs/-/issues/13
80-
run: |
81-
wget https://apt.llvm.org/llvm.sh
82-
chmod +x llvm.sh
83-
sudo ./llvm.sh 18 all
84-
sudo apt install libpolly-18-dev libz-dev
76+
# - name: Install LLVM (Ubuntu Only)
77+
# if: ${{ matrix.os == 'ubuntu-24.04' }}
78+
# # See: https://apt.llvm.org/
79+
# # Last line: https://gitlab.com/taricorp/llvm-sys.rs/-/issues/13
80+
# run: |
81+
# wget https://apt.llvm.org/llvm.sh
82+
# chmod +x llvm.sh
83+
# sudo ./llvm.sh 18 all
84+
# sudo apt install libpolly-18-dev libz-dev
8585

86-
- name: Install LLVM 18 (Mac Only)
87-
if: ${{ matrix.os == 'macos-latest' }}
88-
run: brew install llvm@18
86+
# - name: Install LLVM 18 (Mac Only)
87+
# if: ${{ matrix.os == 'macos-latest' }}
88+
# run: brew install llvm@18
8989

9090
# - name: Get the LLVM version (Windows Only)
9191
# if: ${{ matrix.os == 'windows-latest' }}

.github/workflows/cargo-clippy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
- uses: actions-rs/toolchain@v1
1717
with:
1818
toolchain: stable
19-
- name: Install LLVM
20-
# See: https://apt.llvm.org/
21-
# Last line: https://gitlab.com/taricorp/llvm-sys.rs/-/issues/13
22-
run: |
23-
wget https://apt.llvm.org/llvm.sh
24-
chmod +x llvm.sh
25-
sudo ./llvm.sh 18 all
26-
sudo apt install libpolly-18-dev libz-dev
19+
# - name: Install LLVM
20+
# # See: https://apt.llvm.org/
21+
# # Last line: https://gitlab.com/taricorp/llvm-sys.rs/-/issues/13
22+
# run: |
23+
# wget https://apt.llvm.org/llvm.sh
24+
# chmod +x llvm.sh
25+
# sudo ./llvm.sh 18 all
26+
# sudo apt install libpolly-18-dev libz-dev
2727

2828
- name: Run Clippy
2929
run: cargo clippy -- --deny clippy::all --deny warnings

.github/workflows/cargo-test.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -68,19 +68,19 @@ jobs:
6868
with:
6969
toolchain: stable
7070

71-
- name: Install LLVM (Ubuntu Only)
72-
if: ${{ matrix.os == 'ubuntu-24.04' }}
73-
# See: https://apt.llvm.org/
74-
# Last line: https://gitlab.com/taricorp/llvm-sys.rs/-/issues/13
75-
run: |
76-
wget https://apt.llvm.org/llvm.sh
77-
chmod +x llvm.sh
78-
sudo ./llvm.sh 18 all
79-
sudo apt install libpolly-18-dev libz-dev
71+
# - name: Install LLVM (Ubuntu Only)
72+
# if: ${{ matrix.os == 'ubuntu-24.04' }}
73+
# # See: https://apt.llvm.org/
74+
# # Last line: https://gitlab.com/taricorp/llvm-sys.rs/-/issues/13
75+
# run: |
76+
# wget https://apt.llvm.org/llvm.sh
77+
# chmod +x llvm.sh
78+
# sudo ./llvm.sh 18 all
79+
# sudo apt install libpolly-18-dev libz-dev
8080

81-
- name: Install LLVM 18 (Mac Only)
82-
if: ${{ matrix.os == 'macos-latest' }}
83-
run: brew install llvm@18
81+
# - name: Install LLVM 18 (Mac Only)
82+
# if: ${{ matrix.os == 'macos-latest' }}
83+
# run: brew install llvm@18
8484

8585
# - name: Get the LLVM version (Windows Only)
8686
# if: ${{ matrix.os == 'windows-latest' }}

.github/workflows/pages.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ jobs:
3131
- uses: actions-rs/toolchain@v1
3232
with:
3333
toolchain: nightly
34-
- name: Install LLVM
35-
# See: https://apt.llvm.org/
36-
# Last line: https://gitlab.com/taricorp/llvm-sys.rs/-/issues/13
37-
run: |
38-
wget https://apt.llvm.org/llvm.sh
39-
chmod +x llvm.sh
40-
sudo ./llvm.sh 18 all
41-
sudo apt install libpolly-18-dev libz-dev
34+
# - name: Install LLVM
35+
# # See: https://apt.llvm.org/
36+
# # Last line: https://gitlab.com/taricorp/llvm-sys.rs/-/issues/13
37+
# run: |
38+
# wget https://apt.llvm.org/llvm.sh
39+
# chmod +x llvm.sh
40+
# sudo ./llvm.sh 18 all
41+
# sudo apt install libpolly-18-dev libz-dev
4242
- name: Install mdBook
4343
run: cargo install mdbook
4444
- name: Setup Pages

0 commit comments

Comments
 (0)