Skip to content

Commit 1857d9d

Browse files
committedJul 8, 2024
ci wiggle
1 parent d366cd9 commit 1857d9d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎.github/workflows/release.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Install cross tools on Ubuntu
5656
if: ${{matrix.runs-on == 'ubuntu-20.04' && matrix.platform == 'aarch64'}}
5757
run: |
58-
apt-get install -y crossbuild-essential-arm64
58+
sudo apt-get install -y crossbuild-essential-arm64
5959
6060
- name: Build Slang
6161
run: |
@@ -80,12 +80,14 @@ jobs:
8080
else
8181
config
8282
fi
83-
windows*) config
83+
;;
84+
windows*) config;;
8485
macos*) if [ "${{matrix.platform}}" == "aarch64" ]; then
8586
config -DCMAKE_OSX_ARCHITECTURES=arm64
8687
else
8788
config -DCMAKE_OSX_ARCHITECTURES=x86_64
8889
fi
90+
;;
8991
esac
9092
9193
cmake --workflow --preset "${{matrix.config}}"

0 commit comments

Comments
 (0)