Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@ jobs:
# it to validate it still compiles (e.g. a Dependabot ubuntu:noble bump).
smoke-build:
name: Smoke build job
needs: [changes]
# Also gate on test-release: the smoke build builds Docker images, so don't
# spend it when the test job is already failing. A failed test-release
# leaves this job skipped (needs unsatisfied) and the aggregator blocks on
# the test-release failure directly.
needs: [changes, test-release]
if: ${{ needs.changes.outputs.image == 'true' }}
uses: ./.github/workflows/build-docker-task.yml
secrets: inherit
Expand Down