This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
[TieredStorage] Deprecate the use of account-hash in tiered-storage #3648
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cargo | |
on: | |
push: | |
branches: | |
- master | |
- v[0-9]+.[0-9]+ | |
pull_request: | |
branches: | |
- master | |
- v[0-9]+.[0-9]+ | |
paths: | |
- "**.rs" | |
- "**/Cargo.toml" | |
- "**/Cargo.lock" | |
- ".github/scripts/cargo-clippy-before-script.sh" | |
- ".github/workflows/cargo.yml" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
SHELL: /bin/bash | |
SCCACHE_GHA_ENABLED: "true" | |
RUSTC_WRAPPER: "sccache" | |
jobs: | |
clippy-stable: | |
strategy: | |
matrix: | |
os: | |
- macos-latest-large | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: mozilla-actions/sccache-action@v0.0.3 | |
with: | |
version: "v0.5.4" | |
- shell: bash | |
run: .github/scripts/cargo-clippy-before-script.sh ${{ runner.os }} | |
- shell: bash | |
run: | | |
source ci/rust-version.sh stable | |
rustup component add clippy --toolchain "$rust_stable" | |
scripts/cargo-clippy-stable.sh | |
clippy-nightly: | |
strategy: | |
matrix: | |
os: | |
- macos-latest-large | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: mozilla-actions/sccache-action@v0.0.3 | |
with: | |
version: "v0.5.4" | |
- shell: bash | |
run: .github/scripts/cargo-clippy-before-script.sh ${{ runner.os }} | |
- shell: bash | |
run: | | |
source ci/rust-version.sh nightly | |
rustup component add clippy --toolchain "$rust_nightly" | |
scripts/cargo-clippy-nightly.sh |