Skip to content

Commit 4e01393

Browse files
authored
ci: Clean up old setup steps (#11077)
### Description Cleaning up some old Rust CI tooling that we no longer need. These are a small win in making our CI go faster. Everything counts! ### Testing Instructions CI
1 parent 3a0d340 commit 4e01393

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

.github/actions/setup-rust/action.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,6 @@ runs:
3030
# we want more specific settings
3131
cache: false
3232

33-
- name: "Install LLD (LLVM Linker) for Linux"
34-
if: runner.os == 'Linux'
35-
shell: bash
36-
run: sudo apt-get -y update && sudo apt-get install -y lld
37-
3833
- name: Set Up Protoc
3934
id: set-up-protoc
4035
continue-on-error: true
@@ -54,19 +49,10 @@ runs:
5449
shell: bash
5550
run: echo "::add-matcher::${{ github.action_path }}/matchers.json"
5651

57-
- uses: rui314/setup-mold@v1
58-
5952
- name: "Setup Rust Cache"
6053
uses: Swatinem/rust-cache@v2
6154
with:
6255
shared-key: ${{ inputs.shared-cache-key }}
6356
key: ${{ inputs.cache-key }}
6457
# the cache is huge and we only get 10gb max, so we only save on master
6558
save-if: ${{ github.ref == 'refs/heads/main' && inputs.save-cache || 'false' }}
66-
67-
- name: "Install cargo-groups"
68-
uses: taiki-e/install-action@v2
69-
env:
70-
GITHUB_TOKEN: ${{ inputs.github-token }}
71-
with:
72-

.github/workflows/turborepo-release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,11 @@ jobs:
9292
with:
9393
github-token: "${{ secrets.GITHUB_TOKEN }}"
9494

95+
- name: Install cargo-groups
96+
uses: taiki-e/install-action@v2
97+
with:
98+
99+
95100
- name: Run Rust Unit Tests
96101
run: cargo groups test turborepo
97102

0 commit comments

Comments
 (0)