mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
actions: fix build script
This commit is contained in:
parent
14e38a5221
commit
08e6482f08
1 changed files with 5 additions and 6 deletions
9
.github/workflows/nightly.yml
vendored
9
.github/workflows/nightly.yml
vendored
|
|
@ -15,17 +15,16 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install build dependencies
|
||||
- name: Install cross toolchain
|
||||
uses: risonakamo/setup-x86_64-elf-gcc@v1
|
||||
|
||||
- name: Install userland build tools
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y --no-install-recommends \
|
||||
make \
|
||||
gcc-x86-64-linux-gnu \
|
||||
binutils-x86-64-linux-gnu \
|
||||
nasm \
|
||||
xorriso
|
||||
sudo ln -sf /usr/bin/x86_64-linux-gnu-gcc /usr/local/bin/x86_64-elf-gcc
|
||||
sudo ln -sf /usr/bin/x86_64-linux-gnu-ld /usr/local/bin/x86_64-elf-ld
|
||||
|
||||
- name: Build ISO
|
||||
run: make -j4
|
||||
|
|
|
|||
Loading…
Reference in a new issue