Skip to content

Commit

Permalink
Try to fix rust workflow cache
Browse files Browse the repository at this point in the history
  • Loading branch information
imbillow committed May 10, 2024
1 parent a461a34 commit dab91d2
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 @@ -20,16 +20,16 @@ jobs:
with:
repository: rizinorg/rizin
ref: refs/heads/dev
path: ${{ github.workspace }}/../rizin
path: ${{ github.workspace }}/rizin
- name: Cache rizin
id: cache-rizin
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/../rizin/build
path: ${{ github.workspace }}/rizin/build
key: ${{ runner.os }}-rizin
save-always: true
- name: Build rizin
working-directory: ${{ github.workspace }}/../rizin
working-directory: ${{ github.workspace }}/rizin
run: |
pip install meson ninja PyYAML
meson setup --debug --buildtype=release --prefix=$(realpath $HOME/.local) build
Expand Down

0 comments on commit dab91d2

Please sign in to comment.