blob: 5622777651d72c6601b50b5faaeb339c397cb36e [file] [log] [blame]
Mohammed Nasereb46b6c2022-08-29 21:45:29 -04001#!/usr/bin/env python3
2
3import yaml
4
Mohammed Nasereba1a762022-08-29 22:05:09 -04005PROJECTS = [
Mohammed Naser4a40c9e2022-08-29 22:10:23 -04006 "cinder",
7 "heat",
8 "senlin",
9 "octavia",
10 "barbican",
11 "designate",
12 "nova",
13 "neutron",
14 "monasca-notification",
15 "monasca-agent",
16 "keystone",
17 "horizon",
18 "monasca-api",
19 "ironic",
20 "glance",
21 "magnum",
22 "monasca-persister",
23 "placement",
Mohammed Nasereba1a762022-08-29 22:05:09 -040024]
Mohammed Naser4a40c9e2022-08-29 22:10:23 -040025RELEASES = ["xena", "wallaby", "yoga", "master"]
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040026
Mohammed Nasercebe64f2022-08-29 22:15:46 -040027PROFILES = {
28 "cinder": "ceph qemu",
29 "nova": "ceph openvswitch configdrive qemu migration",
30 "neutron": "openvswitch vpn",
31 "keystone": "apache ldap openidc",
32 "horizon": "apache",
33 "monasca-api": "apache influxdb",
34 "ironic": "ipxe ipmi qemu tftp",
35 "glance": "ceph",
36 "monasca-persister": "influxdb",
37 "placement": "apache",
38}
39DIST_PACKAGES = {
40 "heat": "curl",
41 "designate": "bind9utils",
42 "nova": "ovmf qemu-efi-aarch64",
43 "neutron": "jq ethtool lshw",
44 "monasca-agent": "iproute2 libvirt-clients lshw",
45 "ironic": "ethtool lshw iproute2",
46}
47PIP_PACKAGES = {
48 "neutron": "neutron-vpnaas",
49 "monasca-agent": "libvirt-python python-glanceclient python-neutronclient python-novaclient py3nvml",
50 "horizon": "designate-dashboard heat-dashboard ironic-ui magnum-ui neutron-vpnaas-dashboard octavia-dashboard senlin-dashboard monasca-ui",
51 "ironic": "python-dracclient sushy",
52 "placement": "httplib2",
53}
54
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040055
56def get_ref_for_project(project, release):
57 return (
58 open(f"images/openstack/projects/{project}/{release}/ref", "r").read().strip()
59 )
60
61
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040062def get_build_args_for_project(project, release):
63 return {
64 "RELEASE": release,
65 "PROJECT": project,
66 "PROJECT_REF": get_ref_for_project(project, release),
Mohammed Nasercebe64f2022-08-29 22:15:46 -040067 "PROFILES": PROFILES.get(project, ""),
68 "DIST_PACKAGES": DIST_PACKAGES.get(project, ""),
69 "PIP_PACKAGES": PIP_PACKAGES.get(project, ""),
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040070 }
71
72
73def get_platforms_for_project(project):
74 try:
75 return (
76 open(f"images/openstack/projects/{project}/platforms", "r").read().strip()
77 )
78 except FileNotFoundError:
79 return "linux/amd64"
80
81
82def get_job_for_project(project, release):
83 build_args = get_build_args_for_project(project, release)
84 ref = get_ref_for_project(project, release)
85
86 return {
Mohammed Naser4a40c9e2022-08-29 22:10:23 -040087 "name": "Build openstack/{}".format(project),
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040088 "uses": "docker/build-push-action@v3.1.1",
89 "with": {
90 "context": "images/openstack",
Mohammed Naser473c0f32022-08-29 21:53:27 -040091 "cache-from": "type=gha",
92 "cache-to": "type=gha,mode=max",
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040093 "push": True,
94 "platforms": get_platforms_for_project(project),
95 "build-args": "\n".join([f"{k}={v}" for k, v in build_args.items()]),
96 "tags": f"quay.io/vexxhost/{project}:{ref}",
97 },
98 }
99
100
101for release in RELEASES:
Mohammed Naser7a37c992022-08-29 21:47:49 -0400102 workflow_name = f"test-{release}"
103
Mohammed Nasereb46b6c2022-08-29 21:45:29 -0400104 workflow = {
105 "name": f"test-{release}",
106 "on": {
107 "pull_request": {},
108 "push": {"branches": ["main"]},
109 },
110 "jobs": {
111 "build-images": {
112 "runs-on": "ubuntu-latest",
Mohammed Naser4a40c9e2022-08-29 22:10:23 -0400113 "steps": [
114 {"uses": "actions/checkout@v3.0.2"},
115 {"uses": "docker/setup-qemu-action@v2.0.0"},
116 {"uses": "docker/setup-buildx-action@v2.0.0"},
117 {
118 "uses": "docker/login-action@v2.0.0",
119 "with": {
120 "registry": "quay.io",
121 "username": "${{ secrets.QUAY_USERNAME }}",
122 "password": "${{ secrets.QUAY_ROBOT_TOKEN }}",
123 },
124 },
125 ]
126 + [get_job_for_project(project, release) for project in PROJECTS]
127 + [
128 # molecule
129 # promote image if it is the default branch
130 ],
Mohammed Nasereb46b6c2022-08-29 21:45:29 -0400131 }
132 },
133 }
134
Mohammed Naser7a37c992022-08-29 21:47:49 -0400135 with open(f".github/workflows/{workflow_name}.yml", "w") as fd:
136 yaml.dump(workflow, fd, sort_keys=False)