From 21156938e7732841da2ba890f99772cf67a8a13c Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Sun, 9 Nov 2025 14:25:56 -0700 Subject: [PATCH 1/2] ci: clean up old setup steps --- .github/actions/setup-rust/action.yml | 9 --------- .github/workflows/turborepo-release.yml | 5 +++++ 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/actions/setup-rust/action.yml b/.github/actions/setup-rust/action.yml index fd57b22b4aa17..c861d498a9cf7 100644 --- a/.github/actions/setup-rust/action.yml +++ b/.github/actions/setup-rust/action.yml @@ -54,8 +54,6 @@ runs: shell: bash run: echo "::add-matcher::${{ github.action_path }}/matchers.json" - - uses: rui314/setup-mold@v1 - - name: "Setup Rust Cache" uses: Swatinem/rust-cache@v2 with: @@ -63,10 +61,3 @@ runs: key: ${{ inputs.cache-key }} # the cache is huge and we only get 10gb max, so we only save on master save-if: ${{ github.ref == 'refs/heads/main' && inputs.save-cache || 'false' }} - - - name: "Install cargo-groups" - uses: taiki-e/install-action@v2 - env: - GITHUB_TOKEN: ${{ inputs.github-token }} - with: - tool: cargo-groups@0.1.9 diff --git a/.github/workflows/turborepo-release.yml b/.github/workflows/turborepo-release.yml index de2b85dff4155..ec712445da0ee 100644 --- a/.github/workflows/turborepo-release.yml +++ b/.github/workflows/turborepo-release.yml @@ -92,6 +92,11 @@ jobs: with: github-token: "${{ secrets.GITHUB_TOKEN }}" + - name: Install cargo-groups + uses: taiki-e/install-action@v2 + with: + tool: cargo-groups@0.1.9 + - name: Run Rust Unit Tests run: cargo groups test turborepo From 0af364c804ba1c73b457d6f0834f117ed8aa9726 Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Sun, 9 Nov 2025 14:36:34 -0700 Subject: [PATCH 2/2] do less --- .github/actions/setup-rust/action.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/actions/setup-rust/action.yml b/.github/actions/setup-rust/action.yml index c861d498a9cf7..66b9b3929112e 100644 --- a/.github/actions/setup-rust/action.yml +++ b/.github/actions/setup-rust/action.yml @@ -30,11 +30,6 @@ runs: # we want more specific settings cache: false - - name: "Install LLD (LLVM Linker) for Linux" - if: runner.os == 'Linux' - shell: bash - run: sudo apt-get -y update && sudo apt-get install -y lld - - name: Set Up Protoc id: set-up-protoc continue-on-error: true