mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-23 22:14:18 +02:00
Add attempt at ci
This commit is contained in:
parent
72663f38f7
commit
a2ec7dec62
1 changed files with 22 additions and 0 deletions
22
.github/workflows/ci.yml
vendored
Normal file
22
.github/workflows/ci.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue