-
Notifications
You must be signed in to change notification settings - Fork 25
51 lines (47 loc) · 1.49 KB
/
build-debian.msan-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
50
51
name: Build Debian:msan based images
on:
push:
paths:
- 'ci_build_images/debian.Dockerfile'
- 'ci_build_images/msan.Dockerfile'
- 'ci_build_images/qpress.Dockerfile'
- 'ci_build_images/buildbot-worker.Dockerfile'
- .github/workflows/build-debian.msan-based.yml
- .github/workflows/bbw_build_container_template.yml
pull_request:
paths:
- 'ci_build_images/debian.Dockerfile'
- 'ci_build_images/msan.Dockerfile'
- 'ci_build_images/qpress.Dockerfile'
- 'ci_build_images/buildbot-worker.Dockerfile'
- .github/workflows/build-debian.msan-based.yml
- .github/workflows/bbw_build_container_template.yml
workflow_call:
jobs:
build-images:
strategy:
fail-fast: false
matrix:
include:
- image: debian:11
platforms: linux/amd64
branch: 10.11
tag: debian11-msan
clang_version: 15
nogalera: false
- image: debian:11
platforms: linux/amd64
branch: 10.11
tag: debian11-msan-clang-16
clang_version: 16
nogalera: false
uses: ./.github/workflows/bbw_build_container_template.yml
with:
dockerfile: debian.Dockerfile msan.Dockerfile
image: ${{ matrix.image }}
platforms: ${{ matrix.platforms }}
tag: ${{ matrix.tag }}
branch: ${{ matrix.branch }}
clang_version: ${{ matrix.clang_version }}
nogalera: ${{ matrix.nogalera }}
secrets: inherit