forked from MariaDB/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (43 loc) · 1.45 KB
/
build-centos.pip-based.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
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Build CentOS:pip based images
on:
push:
paths:
- 'ci_build_images/centos.Dockerfile'
- 'ci_build_images/pip.Dockerfile'
- 'ci_build_images/qpress.Dockerfile'
- 'ci_build_images/buildbot-worker.Dockerfile'
- .github/workflows/build-centos.pip-based.yml
- .github/workflows/bbw_build_container_template.yml
pull_request:
paths:
- 'ci_build_images/centos.Dockerfile'
- 'ci_build_images/pip.Dockerfile'
- 'ci_build_images/qpress.Dockerfile'
- 'ci_build_images/buildbot-worker.Dockerfile'
- .github/workflows/build-centos.pip-based.yml
- .github/workflows/bbw_build_container_template.yml
workflow_call:
jobs:
build-images:
strategy:
fail-fast: false
matrix:
include:
- image: quay.io/centos/centos:stream9
platforms: linux/amd64, linux/arm64/v8, linux/ppc64le
tag: centosstream9
runner: ubuntu-24.04
nogalera: false
- image: docker.io/openeuler/openeuler:24.03-lts
platforms: linux/amd64, linux/arm64/v8
tag: openeuler2403
nogalera: true
uses: ./.github/workflows/bbw_build_container_template.yml
with:
dockerfile: centos.Dockerfile pip.Dockerfile
image: ${{ matrix.image }}
platforms: ${{ matrix.platforms }}
runner: ${{ matrix.runner }}
tag: ${{ matrix.tag }}
nogalera: ${{ matrix.nogalera }}
secrets: inherit