pict-rs/.forgejo/actions/prepare-rust/action.yaml
asonix 779104fded
All checks were successful
/ clippy (push) Successful in 3m2s
/ check (aarch64-unknown-linux-musl) (push) Successful in 3m42s
/ check (armv7-unknown-linux-musleabihf) (push) Successful in 3m44s
/ tests (push) Successful in 3m19s
/ check (x86_64-unknown-linux-musl) (push) Successful in 4m32s
Compile zigbuild
2024-02-07 19:06:59 -06:00

72 lines
1.9 KiB
YAML

name: Prepare Rust
description: Prepare an environment to build or test rust packages
inputs:
targets:
description: "Targets to add to rustup, comma separated"
required: false
default: ''
runs:
using: "composite"
steps:
-
name: Install zig
uses: https://github.com/goto-bus-stop/setup-zig@v2
with:
version: 0.11.0
-
name: Fetch rust cache
id: cache
uses: https://github.com/actions/cache/restore@v4
with:
path: |
~/.cargo/bin
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
~/.rustup
target/
key: rust-${{ inputs.targets }}-${{ hashFiles('Cargo.toml') }}-${{ hashFiles('Cargo.lock')}}
-
name: Install rustup and rust
if: steps.cache.outputs.cache-hit != 'true'
uses: https://github.com/dtolnay/rust-toolchain@1.75.0
with:
components: clippy
targets: ${{ inputs.targets }}
-
name: Install cargo-zigbuild
if: steps.cache.outputs.cache-hit != 'true'
run: |
cargo install cargo-zigbuild
echo "Installed zigbuild"
-
name: Check
if: steps.cache.outputs.cache-hit != 'true'
run: |
echo "GOT HERE"
which cargo
-
name: Fetch dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: cargo fetch
-
name: Export path
if: steps.cache.outputs.cache-hit == 'true'
run: |
export PATH=$PATH:$HOME/.cargo/bin
export PATH=$PATH:$HOME/.rustup/bin
-
name: Populate rust cache
uses: https://github.com/actions/cache/save@v4
with:
path: |
~/.cargo/bin
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
~/.rustup
target/
key: ${{ steps.cache.outputs.cache-primary-key }}