-
Notifications
You must be signed in to change notification settings - Fork 27
126 lines (110 loc) · 3.74 KB
/
build-debian-based.yml
File metadata and controls
126 lines (110 loc) · 3.74 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
name: Build Debian based images
on:
push:
branches:
- 'main'
- 'dev'
paths:
- 'ci_build_images/debian.Dockerfile'
- 'ci_build_images/hashicorp.fragment.Dockerfile'
- 'ci_build_images/minio.fragment.Dockerfile'
- 'ci_build_images/qpress.Dockerfile'
- 'ci_build_images/buildbot-worker.Dockerfile'
- .github/workflows/build-debian-based.yml
- .github/workflows/bbw_build_container_template.yml
pull_request:
paths:
- 'ci_build_images/debian.Dockerfile'
- 'ci_build_images/hashicorp.fragment.Dockerfile'
- 'ci_build_images/minio.fragment.Dockerfile'
- 'ci_build_images/qpress.Dockerfile'
- 'ci_build_images/buildbot-worker.Dockerfile'
- .github/workflows/build-debian-based.yml
- .github/workflows/bbw_build_container_template.yml
workflow_call:
inputs:
is_scheduled_event:
required: false
type: boolean
default: false
jobs:
build-images:
strategy:
fail-fast: false
matrix:
include:
- image: debian:11
platforms: linux/amd64, linux/arm64/v8
branch: 10.11
nogalera: false
- image: debian:12
platforms: linux/amd64, linux/arm64/v8, linux/ppc64le
branch: 10.11
tag: debian12
nogalera: false
- image: debian:12
platforms: linux/386
branch: 10.11
tag: debian12-386
nogalera: false
dockerfile: 'debian.Dockerfile hashicorp.fragment.Dockerfile minio.fragment.Dockerfile'
- image: debian:trixie
platforms: linux/amd64, linux/arm64/v8, linux/ppc64le
branch: 11.8
tag: debian13
nogalera: false
- image: debian:trixie
platforms: linux/386
branch: 11.8
tag: debian13-386
nogalera: false
- image: debian:sid
platforms: linux/amd64, linux/arm64/v8, linux/ppc64le
branch: 11.8
nogalera: false
deploy_on_schedule: true
- image: debian:sid
platforms: linux/386
branch: 11.8
tag: debiansid-386
nogalera: false
deploy_on_schedule: true
- image: ubuntu:22.04
platforms: linux/amd64, linux/arm64/v8, linux/ppc64le, linux/s390x
branch: 10.11
nogalera: false
- image: ubuntu:24.04
platforms: linux/amd64, linux/arm64/v8, linux/ppc64le, linux/s390x
branch: 10.11
nogalera: false
- image: ubuntu:25.04
platforms: linux/amd64, linux/arm64/v8
branch: 11.4
nogalera: false
- image: ubuntu:25.10
platforms: linux/amd64, linux/arm64/v8
branch: 11.8
nogalera: false
- image: ubuntu:26.04
platforms: linux/amd64, linux/arm64/v8, linux/ppc64le, linux/s390x
branch: 11.8
nogalera: false
- image: ubuntu:26.04
tag: ubuntu26.04-amd64v3
platforms: linux/amd64
branch: 11.8
nogalera: false
arch_variant: amd64v3
uses: ./.github/workflows/bbw_build_container_template.yml
with:
dockerfile: ${{ matrix.dockerfile || 'debian.Dockerfile' }}
image: ${{ matrix.image }}
platforms: ${{ matrix.platforms }}
tag: ${{ matrix.tag }}
branch: ${{ matrix.branch }}
nogalera: ${{ matrix.nogalera }}
arch_variant: ${{ matrix.arch_variant }}
is_scheduled_event: ${{ inputs.is_scheduled_event || false }}
deploy_on_schedule: ${{ matrix.deploy_on_schedule || false }}
runner: 'ubuntu-24.04'
secrets: inherit