Skip to content

build-wayblue

build-wayblue #727

Workflow file for this run

name: build-wayblue
on:
schedule:
- cron: "00 5 * * *" # build at 5:00 UTC every day
push:
paths-ignore: # don't rebuild if only documentation has changed
- "**.md"
workflow_dispatch: # allow manually triggering builds
jobs:
bluebuild:
name: Build wayblue
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
strategy:
fail-fast: false # stop GH from cancelling all matrix builds if one fails
matrix:
recipe:
- recipe-sway.yml
- recipe-sway-nvidia.yml
- recipe-sway-nvidia-open.yml
- recipe-hyprland.yml
- recipe-hyprland-nvidia.yml
- recipe-hyprland-nvidia-open.yml
- recipe-river.yml
- recipe-river-nvidia.yml
- recipe-river-nvidia-open.yml
- recipe-wayfire.yml
- recipe-wayfire-nvidia.yml
- recipe-wayfire-nvidia-open.yml
- recipe-sway-gdm.yml
- recipe-sway-nvidia-gdm.yml
- recipe-sway-nvidia-open-gdm.yml
- recipe-hyprland-gdm.yml
- recipe-hyprland-nvidia-gdm.yml
- recipe-hyprland-nvidia-open-gdm.yml
- recipe-river-gdm.yml
- recipe-river-nvidia-gdm.yml
- recipe-river-nvidia-open-gdm.yml
- recipe-wayfire-gdm.yml
- recipe-wayfire-nvidia-gdm.yml
- recipe-wayfire-nvidia-open-gdm.yml
steps:
- name: Checkout repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Gather image data from recipe
run: |
echo "IMAGE_NAME=$(grep '^name:' ./recipes/${{ matrix.recipe }} | sed 's/^name: //')" >> $GITHUB_ENV
echo "IMAGE_MAJOR_VERSION=$(grep '^image-version:' ./recipes/${{ matrix.recipe }} | sed 's/^image-version: //')" >> $GITHUB_ENV
BASE_IMAGE=$(grep '^base-image:' ./recipes/${{ matrix.recipe }} | sed 's/^base-image: //')
echo "BASE_IMAGE_NAME=$(echo $BASE_IMAGE | sed 's/.*\/.*\///')" >> $GITHUB_ENV
- name: Validate kernel and kmod versions
run: |
set -eo pipefail
linux=$(skopeo inspect docker://ghcr.io/ublue-os/main-kernel:41 | jq -r '.Labels["ostree.linux"]')
AKMODS_KERNEL_VERSION=$(skopeo inspect docker://ghcr.io/ublue-os/akmods:main-41 | jq -r '.Labels["ostree.linux"]')
if [[ "${linux}" != "${AKMODS_KERNEL_VERSION}" ]]; then
echo "Kernel Versions do not match between AKMODS and Cached-Kernel."
exit 1
fi
echo "KERNEL_VERSION=$linux" >> $GITHUB_ENV
- name: Build wayblue
uses: blue-build/github-action@33ee8cc4011b0d47666ea7026d08bb5b941ac90c # v1.7.0
with:
cli_version: v0.8.20
recipe: ${{ matrix.recipe }}
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
registry_token: ${{ github.token }}
pr_event_number: ${{ github.event.number }}