Small changes #47
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: ci | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Zig | |
uses: goto-bus-stop/[email protected] | |
with: | |
version: master | |
- name: Update submodules | |
run: git submodule update --init | |
- name: Install dependencies | |
run: sudo apt update && sudo apt install -yq xorriso qemu-system-x86 | |
- name: Build | |
run: zig build | |
- name: Make image | |
run: zig build image | |
- name: Run | |
shell: bash | |
run: | | |
set +e | |
timeout 60 zig build run -Dgraphics=false | |
[ $? -ne 124 ] && exit 1 || exit 0 | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Zig | |
uses: goto-bus-stop/[email protected] | |
with: | |
version: master | |
- name: Lint | |
run: zig fmt --check kernel/*.zig |