workflows: build os on changes

This commit is contained in:
Alex Zenla 2024-03-10 00:24:48 +00:00
parent 4894bd9d1c
commit 334d27a6a4
No known key found for this signature in database
GPG Key ID: 067B238899B51269

18
.github/workflows/os.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: os
on:
push:
paths:
- "os/**"
pull_request:
paths:
- "os/**"
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./hack/ci/install-deps.sh
- run: ./hack/os/build.sh
env:
KRATA_KERNEL_BUILD_JOBS: "5"