-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (45 loc) · 1.36 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
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: ${{ github.workspace }}/rizin
- name: Cache rizin
id: cache-rizin
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/rizin/build
key: ${{ runner.os }}-rizin
save-always: true
- name: Build rizin
working-directory: ${{ github.workspace }}/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
- uses: Swatinem/rust-cache@v2
- name: Build
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
run: |
export LD_LIBRARY_PATH=${HOME}/.local/lib/$(uname -m)-linux-gnu:${HOME}/.local/lib:${HOME}/.local/lib64:${LD_LIBRARY_PATH}
cargo test --verbose