2023-01-27 16:58:37 +04:00

24 lines
427 B
YAML

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build disk image
run: make image.bin
llvm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install lld
run: sudo apt-get install -y lld
- name: LLVM build
run: make LLVM=on image.bin