mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-25 23:14:17 +02:00
22 lines
532 B
YAML
22 lines
532 B
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches: [ "feature/continuous-integration", "development" ]
|
|
|
|
jobs:
|
|
|
|
linux:
|
|
runs-on: archlinux:latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: bash scripts/install-development-environment
|
|
- run: meson setup build/ -Dxwayland=true -Dman-pages=true --buildtype=release
|
|
- run: ninja -C build/
|
|
- run: meson test -C build/
|
|
- uses: actions/upload-artifact@v1
|
|
if: failure()
|
|
with:
|
|
name: Cagebreak_Meson_Testlog
|
|
path: builddir/meson-logs/testlog.txt
|
|
|