From f959e04485a204d1f5c92fba49a117054873df84 Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Thu, 9 Jul 2026 19:43:15 +0200 Subject: [PATCH] CI: add simple build workflow Signed-off-by: Janne Grunau --- .github/workflows/build.yml | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..47259f6 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,39 @@ +# This is a basic workflow to help you get started with Actions + +name: build + +# Controls when the action will run. +on: + # Triggers the workflow on push or pull request events but only for the main branch + push: + branches: [ main ] + pull_request: + branches: [ main ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v7 + + - name: Install meson, ninja + run: | + sudo apt-get update + sudo apt-get install --no-install-recommends -y meson ninja-build + + - name: configure + run: | + meson setup --cross-file=llvm.ini --buildtype release -Dprefix=/usr _build + + - name: Build + run: ninja -C _build + + - uses: actions/upload-artifact@v7 + with: + name: avd-firmware + path: | + _build/apple