Yarufy EarTag Icon #2379
Workflow file for this run
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
name: Build CI test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
build-type: ['default', 'full'] | |
steps: | |
- name: Pull Yaru | |
uses: actions/checkout@v4 | |
- name: Check sources structure | |
run: | | |
# No symlinks should be in icons sources, they should be handled through lists | |
test -z "$(find icons/src/{fullcolor,scalable} -type l)" | |
- name: Install dependencies | |
run: | | |
sudo apt install sassc libxml2-utils python3-pip | |
sudo pip3 install meson ninja | |
- name: Configure Default | |
if: ${{ matrix.build-type == 'default' }} | |
run: | | |
meson _build | |
- name: Configure Full | |
if: ${{ matrix.build-type == 'full' }} | |
run: | | |
meson _build \ | |
-Dauto_features=enabled \ | |
-Dgnome-shell-gresource=true \ | |
-Dmate=true \ | |
-Dmate-dark=true \ | |
-Dubuntu-unity=true \ | |
-Dxfwm4=true \ | |
-Dcinnamon-shell=true \ | |
-Dcinnamon=true \ | |
-Dcinnamon-dark=true | |
- name: Build | |
run: | | |
ninja -C _build | |
- name: Test | |
run: | | |
meson test -C _build | |
- name: Install | |
run: | | |
ninja -C _build install | |
- name: Archiving meson logs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: meson-logs-${{ matrix.build-type }} | |
path: _build/meson-logs |