From 334d27a6a498ce62be45fbbfb35c7ee6321ddcfd Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sun, 10 Mar 2024 00:24:48 +0000 Subject: [PATCH] workflows: build os on changes --- .github/workflows/os.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/os.yml diff --git a/.github/workflows/os.yml b/.github/workflows/os.yml new file mode 100644 index 0000000..421bedd --- /dev/null +++ b/.github/workflows/os.yml @@ -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"