Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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
Loading