-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56784cb
commit 731413b
Showing
1 changed file
with
37 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Check build (macOS) | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: brew install nasm curl make | ||
|
||
- name: Fetch and install toolchain | ||
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 | ||
- name: Verify toolchain is executable | ||
run: x86_64-lux-gcc -v | ||
|
||
- name: Build kernel | ||
run: make | ||
|
||
- name: Clean up artifacts | ||
run: | | ||
rm -rf toolchain-macos-arm64.tar.xz $HOME/toolchain | ||
make clean |