Some checks failed
check / check (push) Failing after 35s
Adds ci/build.sh + ci/bread-ecosystem.rev (pinned to bread-ecosystem 147cfbbf96ae4b171027defa1130d2caddb934b1), points the three release workflows' build step through it, and adds check.yml as breadarr's first lint/test gate on feature/fix branches. No ci/deps.txt: verified ort-sys's build.rs has no system build-time requirements beyond rust/base-devel (its download-binaries feature is pure-Rust ureq/lzma-rust2/hmac-sha256).
99 lines
4.4 KiB
YAML
99 lines
4.4 KiB
YAML
name: dev release
|
|
|
|
# Publishes a dev-track build on every push to `main` (the trunk branch —
|
|
# there is no separate `dev` branch). See bread-ecosystem's
|
|
# docs/release-channels.md for the release-track policy this is part of.
|
|
on:
|
|
push:
|
|
branches: ['main']
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: [self-hosted, hestia]
|
|
steps:
|
|
- name: checkout
|
|
run: |
|
|
set -euo pipefail
|
|
rm -rf src && mkdir src
|
|
git clone --branch main --depth 1 \
|
|
"https://git.breadway.dev/${GITHUB_REPOSITORY}.git" src
|
|
|
|
- name: build
|
|
run: cd src && bash ci/build.sh cargo build --release --locked
|
|
|
|
- name: compute dev version
|
|
run: |
|
|
set -euo pipefail
|
|
cd src
|
|
# Base the dev version off the latest published stable tag, not
|
|
# Cargo.toml — Cargo.toml can go stale relative to the last real
|
|
# release, which would make a dev 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//' | (grep -v -- '-' || true) | sort -V | tail -1)"
|
|
if [ -n "${LATEST_TAG}" ]; then
|
|
CUR="${LATEST_TAG}"
|
|
else
|
|
# breadarr's own Cargo.toml is a virtual workspace manifest with
|
|
# no [workspace.package] version — breadarrd/Cargo.toml is the
|
|
# daemon crate's own version, used as the fallback instead.
|
|
CUR="$(grep -m1 '^version' breadarrd/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))-dev.${TS}+${SHA}" >> "$GITHUB_ENV"
|
|
|
|
- name: prepare artifacts
|
|
run: |
|
|
set -euo pipefail
|
|
PKG_DIR="/srv/breadway-dl/dev/breadarr/${VERSION}"
|
|
mkdir -p "${PKG_DIR}"
|
|
for bin in breadarrd breadarr-tui; do
|
|
cp "src/target/release/${bin}" "${PKG_DIR}/${bin}-x86_64"
|
|
strip "${PKG_DIR}/${bin}-x86_64"
|
|
sha256sum "${PKG_DIR}/${bin}-x86_64" | awk '{print $1}' \
|
|
> "${PKG_DIR}/${bin}-x86_64.sha256"
|
|
done
|
|
cp src/packaging/systemd/breadarrd.service "${PKG_DIR}/"
|
|
cp src/bakery.toml "${PKG_DIR}/bakery.toml"
|
|
ln -sfn "${VERSION}" "/srv/breadway-dl/dev/breadarr/latest"
|
|
|
|
- name: sign dev binaries
|
|
env:
|
|
MINISIGN_SEC_KEY: ${{ secrets.BAKERY_MINISIGN_SEC_KEY_PATH }}
|
|
run: |
|
|
set -euo pipefail
|
|
PKG_DIR="/srv/breadway-dl/dev/breadarr/${VERSION}"
|
|
if [ -n "${MINISIGN_SEC_KEY:-}" ]; then
|
|
for bin in breadarrd breadarr-tui; do
|
|
minisign -W -S -s "${MINISIGN_SEC_KEY}" -m "${PKG_DIR}/${bin}-x86_64" \
|
|
-x "${PKG_DIR}/${bin}-x86_64.minisig" </dev/null
|
|
echo "signed ${bin}-x86_64"
|
|
done
|
|
else
|
|
echo "::warning::BAKERY_MINISIGN_SEC_KEY_PATH not set — shipping breadarrd-x86_64/breadarr-tui-x86_64 UNSIGNED"
|
|
fi
|
|
|
|
# No GitHub Release upload step here — breadarr has no GitHub mirror,
|
|
# and dev builds happen on every push and would spam a release per
|
|
# commit anyway, so dl.breadway.dev/dev/ is the only distribution
|
|
# point for this track.
|
|
- name: regenerate dev index.json
|
|
env:
|
|
MINISIGN_SEC_KEY: ${{ secrets.BAKERY_MINISIGN_SEC_KEY_PATH }}
|
|
TRACK: dev
|
|
run: |
|
|
set -euo pipefail
|
|
if [ -z "${MINISIGN_SEC_KEY:-}" ]; then
|
|
echo "::error::BAKERY_MINISIGN_SEC_KEY_PATH secret not set — refusing to regenerate dev index.json unsigned (would leave a stale signature mismatched against fresh content and break bakery for everyone on the dev track)"
|
|
exit 1
|
|
fi
|
|
rm -rf /tmp/bread-ecosystem-ci-* 2>/dev/null || true
|
|
# mktemp: a fixed clone path races when multiple repos' dev/rc
|
|
# workflows run close together on the same self-hosted runner.
|
|
ECOSYSTEM_CI_DIR="$(mktemp -d /tmp/bread-ecosystem-ci-XXXXXX)"
|
|
git clone --branch main https://git.breadway.dev/Breadway/bread-ecosystem.git "${ECOSYSTEM_CI_DIR}"
|
|
TRACK=dev bash "${ECOSYSTEM_CI_DIR}/scripts/gen-index.sh"
|
|
rm -rf "${ECOSYSTEM_CI_DIR}"
|