sisyphis: Add spec #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
jobs: | |
none: | |
name: Test build | |
runs-on: ubuntu-latest | |
container: | |
image: ubuntu:latest | |
strategy: | |
matrix: | |
targetde: [gnome, kde, all] | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install meson | |
run: | |
apt update -y && | |
apt upgrade -y && | |
apt install -y meson | |
- name: Setup build dir | |
run: | |
meson setup --reconfigure -Dtarget_de=${{ matrix.targetde }} _build | |
- name: Install | |
run: | |
ninja -C _build install |