♻️ Reorganizations + MIPS64 assembly tests #1
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: Rust CI | |
on: | |
push: | |
branches: [main] | |
merge_group: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
cargo-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
name: test | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- uses: taiki-e/install-action@just | |
- name: Install Rust stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- uses: taiki-e/install-action@nextest | |
- name: cargo test | |
run: just test | |
cargo-lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
name: fmt/clippy lint | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- uses: taiki-e/install-action@just | |
- name: Install Rust nightly toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt, clippy | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- name: fmt + clippy | |
run: just clippy | |
- name: chown target | |
run: | | |
sudo chown -R $(id -u):$(id -g) ./target | |
cargo-build-benches: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
name: build-benchmarks | |
continue-on-error: true | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install Rust stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- name: build benches | |
run: cargo bench --no-run --workspace --all | |
- name: chown target | |
run: | | |
sudo chown -R $(id -u):$(id -g) ./target | |
cargo-build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
name: build | |
continue-on-error: true | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install Rust stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- name: build | |
run: cargo build --workspace --all --all-targets | |
- name: chown target | |
run: | | |
sudo chown -R $(id -u):$(id -g) ./target | |
# cargo-doc: | |
# runs-on: ubuntu-latest | |
# timeout-minutes: 20 | |
# steps: | |
# - name: Checkout sources | |
# uses: actions/checkout@v4 | |
# - uses: taiki-e/install-action@just | |
# - name: Install Rust stable toolchain | |
# uses: dtolnay/rust-toolchain@stable | |
# - uses: Swatinem/rust-cache@v2 | |
# with: | |
# cache-on-failure: true | |
# - name: doclint | |
# run: just lint-docs | |
# - name: doctest | |
# run: just test-docs |