mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 12:50:54 +00:00
29 lines
544 B
YAML
29 lines
544 B
YAML
name: kernel
|
|
on:
|
|
push:
|
|
paths:
|
|
- "kernel/**"
|
|
- "hack/ci/**"
|
|
pull_request:
|
|
paths:
|
|
- "kernel/**"
|
|
- "hack/ci/**"
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
arch:
|
|
- x86_64
|
|
- aarch64
|
|
env:
|
|
TARGET_ARCH: "${{ matrix.arch }}"
|
|
name: build ${{ matrix.arch }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- run: ./hack/ci/install-deps.sh
|
|
- run: ./hack/kernel/build.sh
|
|
env:
|
|
KRATA_KERNEL_BUILD_JOBS: "5"
|