forked from MariaDB/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (34 loc) · 1.06 KB
/
build-container-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Build container release
on:
push:
paths:
- 'ci_build_images/debian-release.Dockerfile'
- 'ci_build_images/qpress.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/qpress.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