feat(mpris): Add comprehensive customization options for MPRIS widget #757
Workflow file for this run
This file contains hidden or 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: Check build for Fedora. | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| fedora-build: | |
| container: registry.fedoraproject.org/fedora-minimal:latest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install tooling for source RPM build | |
| run: | | |
| microdnf -y install --nodocs --setopt=install_weak_deps=0 \ | |
| @development-tools @rpm-development-tools rpkg git \ | |
| 'dnf5-command(builddep)' 'dnf5-command(copr)' | |
| # Enable the official COPR repo | |
| # (in case there are dependencies missing in the upstream repos) | |
| microdnf copr enable erikreider/SwayNotificationCenter -y | |
| # It is necessary to checkout into sub-directory, because of some weird ownership problems cause by using containers | |
| - name: Check out sources | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| path: swaync | |
| - name: Copy spec into root dir | |
| run: | | |
| cd swaync | |
| cp ./build-scripts/swaync.rpkg.spec ./ | |
| - name: Generate spec | |
| run: | | |
| cd swaync | |
| mkdir specs | |
| rpkg spec --source --outdir specs | |
| - name: Install build dependencies | |
| run: | | |
| cd swaync | |
| microdnf -y builddep ./specs/swaync.rpkg.spec | |
| - name: Local build | |
| run: | | |
| cd swaync | |
| mkdir -p out | |
| rpkg local --out `pwd`/out |