-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (43 loc) · 1 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: ci
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: master
- 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 -Dnodisplay=true
[ $? -ne 124 ] && exit 1 || exit 0
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: master
- name: Lint
run: zig fmt --check kernel/*.zig lib/*.zig