mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-26 23:44:18 +02:00
43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
on:
|
|
push:
|
|
branches: [ "feature/continuous-integration", "development" ]
|
|
|
|
jobs:
|
|
devel:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: archlinux:latest
|
|
steps:
|
|
- run: pacman-key --init
|
|
- run: pacman -Syu --noconfirm git sudo
|
|
- uses: actions/checkout@v3
|
|
- run: git config --global --add safe.directory /__w/cagebreak/cagebreak
|
|
- 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 --suite devel --suite devel-long -v
|
|
basic:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: archlinux:latest
|
|
steps:
|
|
- run: pacman-key --init
|
|
- run: pacman -Syu --noconfirm git sudo
|
|
- 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 --suite basic -v
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: archlinux:latest
|
|
steps:
|
|
- run: pacman-key --init
|
|
- run: pacman -Syu --noconfirm git sudo
|
|
- 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 --suite release -v
|
|
|