-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] add pocl runtime on linux, allow macos unzip overwrite with -o
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
- name: Download release package | ||
if: ${{ runner.os == 'Linux' }} | ||
run: | | ||
sudo apt-get update && sudo apt-get install -y octave ocl-icd-opencl-dev | ||
sudo apt-get update && sudo apt-get install -y octave ocl-icd-opencl-dev libpocl2 pocl-opencl-icd | ||
curl -s -L -O https://mcx.space/nightly/linux64/MCXStudio-linux64-${{ env.RELEASE_TAG }}.zip | ||
unzip MCXStudio-linux64-${{ env.RELEASE_TAG }}.zip | ||
- name: Install dependencies (MacOS only) | ||
|
@@ -35,7 +35,7 @@ jobs: | |
rm -rf Octave-9.2-Intel.dmg | ||
echo "/Applications/Octave-9.2.app/Contents/Resources/usr/Cellar/[email protected]/9.2.0/bin" >> $GITHUB_PATH | ||
curl -s -L -O https://mcx.space/nightly/macos64/MCXStudio-macos64-${{ env.RELEASE_TAG }}.zip | ||
unzip MCXStudio-macos64-${{ env.RELEASE_TAG }}.zip | ||
unzip -o MCXStudio-macos64-${{ env.RELEASE_TAG }}.zip | ||
- name: Install dependencies (Windows only) | ||
if: ${{ runner.os == 'Windows' }} | ||
run: | | ||
|