Try cache #27
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 | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check rizin | |
uses: actions/checkout@master | |
with: | |
repository: rizinorg/rizin | |
ref: refs/heads/dev | |
path: rizin | |
- name: ccache | |
uses: hendrikmuhs/[email protected] | |
with: | |
create-symlink: true | |
- name: Build rizin | |
working-directory: rizin | |
run: | | |
pip install meson ninja PyYAML | |
meson setup --debug --buildtype=release --prefix=$(realpath $HOME/.local) build | |
ninja install -C build | |
- name: Setup Rust nightly | |
run: | | |
rustup toolchain install nightly --profile minimal | |
rustup default nightly | |
- uses: actions/checkout@v4 | |
with: | |
path: rizin-rs | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: "rizin-rs -> target" | |
cache-all-crates: "true" | |
- name: Build | |
working-directory: rizin-rs | |
run: | | |
export LD_LIBRARY_PATH=${HOME}/.local/lib/$(uname -m)-linux-gnu:${HOME}/.local/lib:${HOME}/.local/lib64:${LD_LIBRARY_PATH} | |
cargo build --verbose | |
- name: Run tests | |
working-directory: rizin-rs | |
run: | | |
export LD_LIBRARY_PATH=${HOME}/.local/lib/$(uname -m)-linux-gnu:${HOME}/.local/lib:${HOME}/.local/lib64:${LD_LIBRARY_PATH} | |
cargo test --verbose |