granite-7: Update granite.git to 7.8.1 #176
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: CI | |
| on: | |
| pull_request: | |
| paths: | |
| - io.elementary.Sdk.json.in | |
| - .github/workflows/ci.yml | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| jobs: | |
| build: | |
| name: Build (${{ matrix.configuration.name }}) | |
| runs-on: ${{ matrix.configuration.runs-on }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| configuration: | |
| - name: x86 | |
| runs-on: ubuntu-22.04 | |
| architecture: x86_64 | |
| - name: ARM | |
| runs-on: ubuntu-22.04-arm | |
| architecture: aarch64 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Clean | |
| uses: ./.github/actions/maximize-build-space | |
| - name: Setup | |
| run: | | |
| sudo apt update | |
| sudo apt install -y ccache flatpak flatpak-builder meson xvfb zstd | |
| sudo rm -rf /var/lib/{apt,dpkg,cache,log}/ | |
| sudo flatpak remote-add --system --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo | |
| - name: Build | |
| env: | |
| DISPLAY: "0:0" | |
| run: | | |
| meson setup build --cross-file="architectures/${{ matrix.configuration.architecture }}.crossfile" | |
| sudo xvfb-run --auto-servernum flatpak-builder --arch=${{ matrix.configuration.architecture }} --disable-rofiles-fuse --keep-build-dirs --install-deps-from=flathub --ccache --repo=elementary /mnt/builddir --state-dir=/mnt/.flatpak-builder ./build/io.elementary.Sdk.json | |
| - name: Fix Permissions | |
| run: sudo chown -R runner:docker . |