-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (49 loc) · 1.41 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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