Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/bundled-driver-pin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ concurrency:
jobs:
behind:
name: pin follows device-drivers
# Forks inherit this schedule as soon as they sync master, and the run can
# only misfire there: the tracking issue belongs on srcfl/ftw, and a fork
# with issues disabled turns every quiet morning into a failure email for
# its owner. A manual dispatch is someone asking, so that still runs.
if: github.repository == 'srcfl/ftw' || github.event_name != 'schedule'
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/rpi-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,13 @@ jobs:

build:
name: build RPi installer image
if: github.event_name != 'pull_request'
# The schedule is upstream's refresh cadence, not the fork's: a fork that
# syncs master would otherwise spend an hour of runner time every month
# publishing an installer release nobody asked its owner for. Pushes and
# manual dispatches on a fork are deliberate, so those still build.
if: >-
github.event_name != 'pull_request' &&
(github.event_name != 'schedule' || github.repository == 'srcfl/ftw')
# Native arm64. pi-gen debootstraps an arm64 rootfs and then runs every
# stage's scripts inside it, so on an x86 runner the whole build executes
# under qemu-user-static instruction emulation — which is what made this
Expand Down