forked from MariaDB/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make "release container" use the workflow template
- the release container will use DEV tags
- Loading branch information
1 parent
e3d3fa9
commit 018eda5
Showing
3 changed files
with
36 additions
and
152 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Build container release | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'ci_build_images/debian-release.Dockerfile' | ||
- 'ci_build_images/buildbot-worker.Dockerfile' | ||
- .github/workflows/build-container-release.yml | ||
- .github/workflows/bbw_build_container_template.yml | ||
pull_request: | ||
paths: | ||
- 'ci_build_images/debian-release.Dockerfile' | ||
- 'ci_build_images/buildbot-worker.Dockerfile' | ||
- .github/workflows/build-container-release.yml | ||
- .github/workflows/bbw_build_container_template.yml | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-images: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- image: debian:12-slim | ||
platforms: linux/amd64 | ||
tag: debian12-release | ||
uses: ./.github/workflows/bbw_build_container_template.yml | ||
with: | ||
dockerfile: debian-release.Dockerfile | ||
image: ${{ matrix.image }} | ||
platforms: ${{ matrix.platforms }} | ||
tag: ${{ matrix.tag }} | ||
noqpress: 'true' | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters