Build Debug #8
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: Build Debug | |
| on: [ workflow_dispatch ] | |
| jobs: | |
| debug: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: fedora:latest | |
| options: --privileged | |
| steps: | |
| - name: Install Git | |
| run: | | |
| dnf install -y git | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install dependencies | |
| run: | | |
| dnf install -y $(cat deps.list) | |
| - name: Configure Ccache | |
| uses: hendrikmuhs/ccache-action@v1.2 | |
| with: | |
| key: rhythmbox-${{ matrix.os }} | |
| - name: Run build script | |
| run: | | |
| ./build.sh | |
| - name: Upload | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: rhythmbox-discord-rpc | |
| path: build.tar.gz |