这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .github/actions/setup-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -54,19 +49,10 @@ 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:
shared-key: ${{ inputs.shared-cache-key }}
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
5 changes: 5 additions & 0 deletions .github/workflows/turborepo-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading