Skip to content

Commit

Permalink
Try to fix rust workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
imbillow committed May 10, 2024
1 parent bb38aac commit 97ebd45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ jobs:
uses: actions/cache@v4
with:
path: rizin/build
key: ${{ runner.os }}-primes
key: ${{ runner.os }}-rizin
- name: Build rizin
run: |
cd rizin
pip install meson ninja PyYAML
meson setup --debug --buildtype=release --prefix=$(realpath $HOME/.local) build
ninja install -C build
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Build
run:
run: |
export LD_LIBRARY_PATH=${HOME}/lib/$(uname -m)-linux-gnu:${HOME}/lib:${HOME}/lib64:${LD_LIBRARY_PATH}
cargo build --verbose
- name: Run tests
Expand Down

0 comments on commit 97ebd45

Please sign in to comment.