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
7 changes: 7 additions & 0 deletions .github/workflows/apt.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This workflow runs on regular PR/push to branches
# and is workflow_call'ed by nightly-unstable-package.yaml
# schedule to build unstable release
# The main purpose of the workflow to determine whether we need
# to use "unstable" release_tag
# The actual job dispatch is done by build-n-test-all-distros.yml

name: Build

on:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/build-n-test-all-distros.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@

# This reusable workflow implements build and test workflow part and is for
# calling from release automation and regular PR/push builds.
#
# It handles release_tag values, including empty one (empty means PR/push build)
# and unstable.
#
# Unstable run requires explicit switching to unstable branch in each job and
# action because the schedule is initiated from master branch but the target
# branch should be unstable branch. This is also handled here.

name: Build and Test All Distros

on:
Expand Down
Loading