All checks were successful
check / check (push) Successful in 3m27s
Route dev/beta/release build steps through ci/build.sh, pinned to bread-ecosystem@147cfbb, instead of installing toolchain/libraries directly on the bare runner. Adds ci/deps.txt for the build-time-only packages breadcast needs beyond the shared image's base set (jsoncpp and libcrypto for breadcast-caststream-sys's build.rs; gstreamer and gst-plugins-base-libs for the gstreamer-app/-video sys crates) -- deliberately excludes bakery.toml's runtime-only plugin deps (pipewire/bad/hlssink3/va), which are loaded dynamically by name and never linked at compile time. Also adds check.yml to run clippy/test on feature/fix branches ahead of a release build, matching breadpad's already-migrated pattern.
58 lines
2 KiB
YAML
58 lines
2 KiB
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
tags: ["v*"]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: [self-hosted, hestia]
|
|
steps:
|
|
- name: checkout
|
|
run: |
|
|
set -euo pipefail
|
|
rm -rf src && mkdir src
|
|
git clone --branch "${GITHUB_REF_NAME}" --depth 1 \
|
|
"https://git.breadway.dev/${GITHUB_REPOSITORY}.git" src
|
|
|
|
- name: build
|
|
run: cd src && bash ci/build.sh cargo build --release --locked
|
|
|
|
- name: prepare artifacts
|
|
run: |
|
|
set -euo pipefail
|
|
VERSION="${GITHUB_REF_NAME#v}"
|
|
PKG_DIR="/srv/breadway-dl/breadcast/${VERSION}"
|
|
mkdir -p "${PKG_DIR}"
|
|
for bin in breadcast breadcastd; 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/contrib/breadcastd.service "${PKG_DIR}/"
|
|
cp src/bakery.toml "${PKG_DIR}/bakery.toml"
|
|
ln -sfn "${VERSION}" "/srv/breadway-dl/breadcast/latest"
|
|
|
|
- name: regenerate index.json
|
|
run: |
|
|
set -euo pipefail
|
|
rm -rf /tmp/bread-ecosystem-ci
|
|
git clone https://git.breadway.dev/Breadway/bread-ecosystem.git /tmp/bread-ecosystem-ci
|
|
bash /tmp/bread-ecosystem-ci/scripts/gen-index.sh
|
|
|
|
- name: upload to GitHub Release
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }}
|
|
run: |
|
|
set -euo pipefail
|
|
VERSION="${GITHUB_REF_NAME#v}"
|
|
PKG_DIR="/srv/breadway-dl/breadcast/${VERSION}"
|
|
gh release create "${GITHUB_REF_NAME}" --repo Breadway/breadcast \
|
|
--title "breadcast v${VERSION}" --generate-notes 2>/dev/null || true
|
|
gh release upload "${GITHUB_REF_NAME}" --repo Breadway/breadcast \
|
|
"${PKG_DIR}/breadcast-x86_64" \
|
|
"${PKG_DIR}/breadcastd-x86_64" \
|
|
"${PKG_DIR}/breadcast-x86_64.sha256" \
|
|
"${PKG_DIR}/breadcastd-x86_64.sha256" \
|
|
--clobber
|