mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-27 07:50:44 +02:00
19 lines
573 B
YAML
19 lines
573 B
YAML
on:
|
|
push:
|
|
branches: [ "feature/continuous-integration", "development" ]
|
|
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: archlinux:latest
|
|
steps:
|
|
- run: pacman -S --noconfirm git sudo
|
|
- run: git clone https://github.com/project-repo/cagebreak
|
|
- run: cd cagebreak
|
|
- run: git checkout feature/continuous-integration
|
|
- 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
|
|
|