Skip to content

Commit fca533c

Browse files
committed
Fix sail path; artifact v4
1 parent 648ee79 commit fca533c

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/setup-sail/action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ runs:
1515
wget https://github.com/rems-project/sail/releases/download/0.19.1-linux-binary/sail.tar.gz
1616
mkdir sail_0_19_1
1717
tar -xzf sail.tar.gz -C sail_0_19_1
18-
echo "$(pwd)/sail_0_19_1/sail/bin/" >> $GITHUB_PATH
18+
echo "$(pwd)/sail_0_19_1/sail/bin" >> $GITHUB_PATH
19+
20+
- shell: bash
21+
if: steps.cache-sail-riscv.outputs.cache-hit != 'true'
22+
run: |
1923
git clone --recursive https://github.com/rems-project/sail-riscv.git .sail
2024
sudo apt install -y build-essential libgmp-dev z3 pkg-config zlib1g-dev
2125
cd .sail

.github/workflows/track_area.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: make track.sizes.synth COMMIT=$(git rev-parse --short "$GITHUB_SHA")
4040

4141
- name: Plot artifact
42-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
4343
with:
4444
name: area_plot
4545
path: './doc/area*'
@@ -54,7 +54,7 @@ jobs:
5454
- name: Checkout repository
5555
uses: actions/checkout@v4
5656

57-
- uses: actions/download-artifact@v3
57+
- uses: actions/download-artifact@v4
5858

5959
- name: Copy to docs
6060
run: |

0 commit comments

Comments
 (0)