bakery already fully covers what the PKGBUILD provided (binary, systemd --user service where applicable, dependency declarations) except a LICENSE copy, which bakery.toml's new license_file field now closes. Removes packaging/arch/ and .forgejo/workflows/package.yml; adds the LICENSE artifact to each release/dev-release/beta-release workflow's prepare step. Not pacman-installed inside BOS today (BOS already consumes these apps exclusively via build-local.sh's skel-staging), so this only removes the option to `pacman -S` outside of BOS/bakery.
80 lines
3.4 KiB
YAML
80 lines
3.4 KiB
YAML
name: beta release
|
|
|
|
# Publishes a beta-track build on every push to `beta` — a frozen
|
|
# stabilization branch cut from `dev` when ready to stabilize; only
|
|
# fix/<issue> branches merged into `beta` should land here afterward.
|
|
# See bread-ecosystem's docs/release-channels.md for the three-track policy.
|
|
on:
|
|
push:
|
|
branches: ['beta']
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: [self-hosted, hestia]
|
|
steps:
|
|
- name: checkout
|
|
run: |
|
|
set -euo pipefail
|
|
rm -rf src && mkdir src
|
|
git clone --branch beta --depth 1 \
|
|
"https://git.breadway.dev/${GITHUB_REPOSITORY}.git" src
|
|
|
|
- name: build
|
|
run: cd src && cargo build --release --locked
|
|
|
|
- name: test
|
|
run: cd src && cargo test --release --locked
|
|
|
|
- name: compute beta version
|
|
run: |
|
|
set -euo pipefail
|
|
cd src
|
|
# Base the beta version off the latest published stable tag,
|
|
# not Cargo.toml — Cargo.toml can go stale relative to the last
|
|
# real release (seen in practice: breadbox/breadpad/breadcrumbs/
|
|
# breadpaper), which would make a beta build sort as OLDER than
|
|
# what's already installed and bakery would correctly refuse it.
|
|
LATEST_TAG="$(git ls-remote --tags --refs \
|
|
"https://git.breadway.dev/${GITHUB_REPOSITORY}.git" 'v*' \
|
|
| awk -F/ '{print $NF}' | sed 's/^v//' | sort -V | tail -1)"
|
|
if [ -n "${LATEST_TAG}" ]; then
|
|
CUR="${LATEST_TAG}"
|
|
else
|
|
CUR="$(grep -m1 '^version' Cargo.toml | sed -E 's/.*"(.*)".*/\1/')"
|
|
fi
|
|
IFS='.' read -r MA MI PA <<< "${CUR}"
|
|
SHA="$(git rev-parse --short HEAD)"
|
|
TS="$(date -u +%Y%m%d%H%M%S)"
|
|
echo "VERSION=${MA}.${MI}.$((PA + 1))-beta.${TS}+${SHA}" >> "$GITHUB_ENV"
|
|
|
|
- name: prepare artifacts
|
|
run: |
|
|
set -euo pipefail
|
|
PKG_DIR="/srv/breadway-dl/beta/breadpaper/${VERSION}"
|
|
mkdir -p "${PKG_DIR}"
|
|
cp "src/target/release/breadpaper" "${PKG_DIR}/breadpaper-x86_64"
|
|
strip "${PKG_DIR}/breadpaper-x86_64"
|
|
sha256sum "${PKG_DIR}/breadpaper-x86_64" | awk '{print $1}' \
|
|
> "${PKG_DIR}/breadpaper-x86_64.sha256"
|
|
cp src/LICENSE "${PKG_DIR}/"
|
|
cp src/bakery.toml "${PKG_DIR}/bakery.toml"
|
|
ln -sfn "${VERSION}" "/srv/breadway-dl/beta/breadpaper/latest"
|
|
|
|
# No GitHub Release upload — beta, like dev, is only distributed via
|
|
# dl.breadway.dev/beta/.
|
|
- name: regenerate beta index.json
|
|
env:
|
|
MINISIGN_SEC_KEY: ${{ secrets.BAKERY_MINISIGN_SEC_KEY_PATH }}
|
|
run: |
|
|
set -euo pipefail
|
|
if [ -z "${MINISIGN_SEC_KEY:-}" ]; then
|
|
echo "::error::BAKERY_MINISIGN_SEC_KEY_PATH secret not set — refusing to regenerate beta index.json unsigned (would leave a stale signature mismatched against fresh content and break bakery for everyone on the beta track)"
|
|
exit 1
|
|
fi
|
|
rm -rf /tmp/bread-ecosystem-ci-* 2>/dev/null || true
|
|
# mktemp: a fixed clone path races when multiple repos' dev/beta
|
|
# workflows run close together on the same self-hosted runner.
|
|
ECOSYSTEM_CI_DIR="$(mktemp -d /tmp/bread-ecosystem-ci-XXXXXX)"
|
|
git clone https://git.breadway.dev/Breadway/bread-ecosystem.git "${ECOSYSTEM_CI_DIR}"
|
|
TRACK=beta bash "${ECOSYSTEM_CI_DIR}/scripts/gen-index.sh"
|
|
rm -rf "${ECOSYSTEM_CI_DIR}"
|