From 1b7d8132efaefb8091af5f37800bc69d9f444a08 Mon Sep 17 00:00:00 2001 From: Cameron Clough Date: Thu, 20 Jun 2024 00:03:36 +0100 Subject: [PATCH] build workflow --- .github/workflows/build.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..9bbedd0 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,22 @@ +name: build + +on: + push: + branches: [ master ] + pull_request: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + timeout-minutes: 60 + steps: + - uses: actions/checkout@v4 + with: + submodules: true + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + + - run: ./build_kernel.sh + - run: ./build_system.sh