Cache optimizations #1444
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: CI | |
on: | |
pull_request: | |
push: # required for actions/cache to work | |
branches: | |
- master | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
runs-on: ${{ matrix.os }} | |
env: | |
RUSTFLAGS: --deny warnings | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache | |
id: rust-cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml', '.github/workflows/*.yml') }} | |
- name: Check for forbidden words | |
if: runner.os != 'Windows' | |
run: "! grep --include='*.rs' -RE 'to_be_bytes|from_be_bytes|dbg!' ." | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install Rust | |
if: steps.rust-cache.outputs.cache-hit != 'true' | |
run: | | |
rustup default 1.66 | |
rustup component add rustfmt | |
rustup component add clippy | |
- name: OSX x86 rust | |
if: startsWith(matrix.os, 'macos') | |
run: | | |
# For some reason this is required to run the fuzzer on OSX | |
rustup target add x86_64-apple-darwin | |
- name: Setup wasmtime | |
uses: bytecodealliance/actions/wasmtime/setup@v1 | |
with: | |
version: "24.0.0" | |
- name: Install cargo-deny | |
if: steps.rust-cache.outputs.cache-hit != 'true' | |
run: rustup run --install 1.74 cargo install --force --version 0.14.17 cargo-deny --locked | |
- name: Install cargo-fuzz | |
if: steps.rust-cache.outputs.cache-hit != 'true' | |
run: cargo install --force --version 0.11.0 cargo-fuzz --locked | |
- name: Install just | |
if: steps.rust-cache.outputs.cache-hit != 'true' | |
run: cargo install --force --version 1.8.0 just --locked | |
- name: Compile | |
run: cargo build --all-targets --all-features | |
- name: Fuzzer | |
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macos') | |
run: just fuzz_ci | |
- name: Run tests | |
run: just build test | |
- name: Clippy | |
run: cargo clippy --all --all-targets -- -Dwarnings | |
- name: Format | |
run: cargo fmt --all -- --check | |
- name: Run CPython wrapper tests | |
if: runner.os != 'Windows' | |
run: | | |
python3 -m venv venv | |
source venv/bin/activate | |
pip3 install --upgrade pip | |
pip3 install maturin | |
just test_py | |
- name: Run CPython wrapper tests | |
if: runner.os == 'Windows' | |
run: | | |
python3 -m venv venv | |
venv\Scripts\activate | |
pip3 install --upgrade pip | |
pip3 install maturin | |
just test_py | |
- name: Run WASI tests | |
if: runner.os != 'Windows' | |
run: | | |
rustup toolchain install nightly | |
rustup target add wasm32-wasip1 --toolchain=nightly | |
RUSTFLAGS="" just test_wasi |