create test processes #9
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
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: build job | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
with: | |
submodules: true | |
- name: Install tools | |
run: sudo apt-get update && sudo apt-get install -y llvm python3 ninja-build lld | |
- name: Generate ninja.build | |
run: python3 conf.py | |
- name: Run ninja | |
run: ninja | |
- name: Upload kernel8.img | |
uses: actions/[email protected] | |
with: | |
name: kernel8.img | |
path: kernel8.img | |
- name: Upload kernel8.elf | |
uses: actions/[email protected] | |
with: | |
name: kernel8.elf | |
path: kernel8.elf |