Skip to content

Commit

Permalink
workflow: fix paths in mac build system
Browse files Browse the repository at this point in the history
  • Loading branch information
jewelcodes committed Sep 4, 2024
1 parent 731413b commit 245e610
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ jobs:
run: |
curl https://jewelcodes.io/lux/toolchain-macos-arm64.tar.xz -o toolchain-macos-arm64.tar.xz
tar -xvJf toolchain-macos-arm64.tar.xz
mv toolchain $HOME/toolchain
echo "$HOME/toolchain/bin" >> $GITHUB_PATH
mv toolchain $HOME/work/toolchain
mv host $HOME/work/host
echo "$HOME/work/toolchain/bin" >> $GITHUB_PATH
- name: Verify toolchain is executable
run: x86_64-lux-gcc -v
Expand All @@ -33,5 +34,5 @@ jobs:

- name: Clean up artifacts
run: |
rm -rf toolchain-macos-arm64.tar.xz $HOME/toolchain
rm -rf toolchain-macos-arm64.tar.xz $HOME/work/toolchain $HOME/work/host
make clean

0 comments on commit 245e610

Please sign in to comment.