Skip to content

Commit

Permalink
ci: fix path of Zig install
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan-Velickovic committed Sep 23, 2023
1 parent 7832106 commit 1c897e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: |
wget https://ziglang.org/download/0.11.0/zig-linux-x86_64-0.11.0.tar.xz
tar xf zig-linux-x86_64-0.11.0.tar.xz
echo "${PWD}/zig-linux-x86_64-0.11.0/bin:$PATH" >> $GITHUB_PATH
echo "${PWD}/zig-linux-x86_64-0.11.0/:$PATH" >> $GITHUB_PATH
- name: Build and run VMM examples
run: ./ci/examples.sh ${PWD}/sel4cp-sdk-1.2.6
shell: bash
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
run: |
wget https://ziglang.org/download/0.11.0/zig-macos-x86_64-0.11.0.tar.xz
tar xf zig-macos-x86_64-0.11.0.tar.xz
echo "${PWD}/zig-macos-x86_64-0.11.0/bin:$PATH" >> $GITHUB_PATH
echo "${PWD}/zig-macos-x86_64-0.11.0/:$PATH" >> $GITHUB_PATH
- name: Build and run VMM examples
run: ./ci/examples.sh ${PWD}/sel4cp-sdk-1.2.6
shell: bash
Expand Down

0 comments on commit 1c897e6

Please sign in to comment.