-
Notifications
You must be signed in to change notification settings - Fork 9
53 lines (51 loc) · 1.29 KB
/
containers-openstack.yaml
File metadata and controls
53 lines (51 loc) · 1.29 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
name: Build OpenStack containers
on:
push:
tags:
- v*
branches:
- main
paths: &triggerpaths
- "containers/cinder/**"
- "containers/glance/**"
- "containers/horizon/**"
- "containers/ironic/**"
- "containers/keystone/**"
- "containers/neutron/**"
- "containers/nova/**"
- "containers/octavia/**"
- "containers/openstack-client/**"
- "containers/placement/**"
- "containers/skyline/**"
- ".github/workflows/containers-openstack.yaml"
- ".github/workflows/build-container-reuse.yaml"
- "python/**"
pull_request:
types: [opened, synchronize, reopened, closed]
paths: *triggerpaths
workflow_dispatch:
merge_group:
types: [checks_requested]
jobs:
openstack:
strategy:
matrix:
project:
- cinder
- glance
- horizon
- ironic
- keystone
- neutron
- nova
- octavia
- openstack-client
- placement
- skyline
uses: ./.github/workflows/build-container-reuse.yaml
secrets: inherit
with:
container_name: ${{ matrix.project }}
dockerfile_path: containers/${{ matrix.project }}/Dockerfile
build_args: OPENSTACK_VERSION=2025.2
latest_name: "2025.2"