Files
beluga/.gitea/workflows/build.yml
T
arthur 6cd79b5c76
Meson Build and Deploy / build (push) Successful in 25s
downgrade version of runner upload
2025-09-24 11:14:22 +02:00

37 lines
730 B
YAML

name: Meson Build and Deploy
on:
push:
branches: ["lisp"]
pull_request:
jobs:
build:
runs-on: home-1
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
tokens: ${{ secrets.GITEA_TOKEN }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y meson ninja-build gcc
- name: Configure Meson
run: meson setup build
- name: Build project
run: meson compile -C build
- name: Run tests
run: meson test -C build --print-errorlogs || true
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: beluga
path: build/