Mohammed Naser | eb46b6c | 2022-08-29 21:45:29 -0400 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| 2 | |
| 3 | import yaml |
| 4 | |
Mohammed Naser | eba1a76 | 2022-08-29 22:05:09 -0400 | [diff] [blame] | 5 | PROJECTS = [ |
Mohammed Naser | 4a40c9e | 2022-08-29 22:10:23 -0400 | [diff] [blame] | 6 | "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 Naser | eba1a76 | 2022-08-29 22:05:09 -0400 | [diff] [blame] | 24 | ] |
Mohammed Naser | 4a40c9e | 2022-08-29 22:10:23 -0400 | [diff] [blame] | 25 | RELEASES = ["xena", "wallaby", "yoga", "master"] |
Mohammed Naser | eb46b6c | 2022-08-29 21:45:29 -0400 | [diff] [blame] | 26 | |
Mohammed Naser | cebe64f | 2022-08-29 22:15:46 -0400 | [diff] [blame^] | 27 | PROFILES = { |
| 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 | } |
| 39 | DIST_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 | } |
| 47 | PIP_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 Naser | eb46b6c | 2022-08-29 21:45:29 -0400 | [diff] [blame] | 55 | |
| 56 | def get_ref_for_project(project, release): |
| 57 | return ( |
| 58 | open(f"images/openstack/projects/{project}/{release}/ref", "r").read().strip() |
| 59 | ) |
| 60 | |
| 61 | |
Mohammed Naser | eb46b6c | 2022-08-29 21:45:29 -0400 | [diff] [blame] | 62 | def 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 Naser | cebe64f | 2022-08-29 22:15:46 -0400 | [diff] [blame^] | 67 | "PROFILES": PROFILES.get(project, ""), |
| 68 | "DIST_PACKAGES": DIST_PACKAGES.get(project, ""), |
| 69 | "PIP_PACKAGES": PIP_PACKAGES.get(project, ""), |
Mohammed Naser | eb46b6c | 2022-08-29 21:45:29 -0400 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | |
| 73 | def 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 | |
| 82 | def 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 Naser | 4a40c9e | 2022-08-29 22:10:23 -0400 | [diff] [blame] | 87 | "name": "Build openstack/{}".format(project), |
Mohammed Naser | eb46b6c | 2022-08-29 21:45:29 -0400 | [diff] [blame] | 88 | "uses": "docker/build-push-action@v3.1.1", |
| 89 | "with": { |
| 90 | "context": "images/openstack", |
Mohammed Naser | 473c0f3 | 2022-08-29 21:53:27 -0400 | [diff] [blame] | 91 | "cache-from": "type=gha", |
| 92 | "cache-to": "type=gha,mode=max", |
Mohammed Naser | eb46b6c | 2022-08-29 21:45:29 -0400 | [diff] [blame] | 93 | "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 | |
| 101 | for release in RELEASES: |
Mohammed Naser | 7a37c99 | 2022-08-29 21:47:49 -0400 | [diff] [blame] | 102 | workflow_name = f"test-{release}" |
| 103 | |
Mohammed Naser | eb46b6c | 2022-08-29 21:45:29 -0400 | [diff] [blame] | 104 | 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 Naser | 4a40c9e | 2022-08-29 22:10:23 -0400 | [diff] [blame] | 113 | "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 Naser | eb46b6c | 2022-08-29 21:45:29 -0400 | [diff] [blame] | 131 | } |
| 132 | }, |
| 133 | } |
| 134 | |
Mohammed Naser | 7a37c99 | 2022-08-29 21:47:49 -0400 | [diff] [blame] | 135 | with open(f".github/workflows/{workflow_name}.yml", "w") as fd: |
| 136 | yaml.dump(workflow, fd, sort_keys=False) |