workflow: self-host linux toolchain #3
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
name: build - linux | |
on: | |
[push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt install build-essential nasm curl make | |
- name: Fetch and install toolchain | |
run: | | |
tar -xvJf https://jewelcodes.io/lux/toolchain-linux-x86_64.tar.xz -o toolchain-linux-x86_64.tar.xz | |
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 | |
- name: Build kernel | |
run: make | |
- name: Clean up artifacts | |
run: | | |
rm -rf toolchain-linux-x86_64.tar.xz $HOME/work/toolchain $HOME/work/host | |
make clean |