-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
macos-12 is deprecated, use macos-14 which is the current latest GitHub version. Moving to macos-14 means the action is running on Apple Silicon now. Signed-off-by: Ivan-Velickovic <[email protected]>
- Loading branch information
1 parent
0e81969
commit b3aece9
Showing
1 changed file
with
6 additions
and
6 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 |
---|---|---|
|
@@ -58,23 +58,23 @@ jobs: | |
with: | ||
# @ivanv: this needs to be fixed for the restructure | ||
path: build_*/loader.img | ||
build_macos_x86_64: | ||
name: Build and run examples (macOS x86-64) | ||
runs-on: macos-12 | ||
build_macos_arm64: | ||
name: Build and run examples (macOS ARM64) | ||
runs-on: macos-14 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
- name: Download Microkit SDK | ||
run: | | ||
wget https://github.com/seL4/microkit/releases/download/1.4.1/microkit-sdk-1.4.1-macos-x86-64.tar.gz | ||
tar xf microkit-sdk-1.4.1-macos-x86-64.tar.gz | ||
wget https://github.com/seL4/microkit/releases/download/1.4.1/microkit-sdk-1.4.1-macos-aarch64.tar.gz | ||
tar xf microkit-sdk-1.4.1-macos-aarch64.tar.gz | ||
- name: Install dependencies (via Homebrew) | ||
# 'expect' is only a dependency for CI testing | ||
run: | | ||
brew install llvm qemu dtc make dosfstools expect | ||
echo "/usr/local/opt/llvm/bin:$PATH" >> $GITHUB_PATH | ||
echo "/opt/llvm/bin:$PATH" >> $GITHUB_PATH | ||
- name: Install Zig | ||
uses: mlugg/[email protected] | ||
with: | ||
|