add CI/CD config
Meson Build and Deploy / build (push) Failing after 1m54s

This commit is contained in:
Arthur Barraux
2025-09-24 10:29:31 +02:00
parent 8ce621dfde
commit 54db6321ad
2 changed files with 39 additions and 4 deletions
+34
View File
@@ -0,0 +1,34 @@
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
- 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@v4
with:
name: beluga
path: build/