Update build.sh #15
Workflow file for this run
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: Assembly/C CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Build KernelOS | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install 32-bit GCC libraries | |
run: sudo apt-get install gcc-multilib -y | |
- name: Install Xorriso | |
run: sudo apt-get install xorriso -y | |
- name: Install GNU Mtools | |
run: sudo apt-get install mtools -y | |
- name: Run build script | |
run: ./build.sh | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: KernelOS | |
path: build/KernelOS*.iso |