mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 21:21:32 +00:00
21 lines
357 B
YAML
21 lines
357 B
YAML
name: kernel
|
|
on:
|
|
push:
|
|
paths:
|
|
- "kernel/**"
|
|
- "hack/ci/**"
|
|
pull_request:
|
|
paths:
|
|
- "kernel/**"
|
|
- "hack/ci/**"
|
|
jobs:
|
|
build:
|
|
name: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: ./hack/ci/install-deps.sh
|
|
- run: ./hack/kernel/build.sh
|
|
env:
|
|
KRATA_KERNEL_BUILD_JOBS: "5"
|