| 
									
										
										
										
											2022-01-05 13:49:42 +00:00
										 |  |  | #!/usr/bin/python3 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Re-generate container recipes | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This script uses the "lcitool" available from | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | #   https://gitlab.com/libvirt/libvirt-ci | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Copyright (c) 2020 Red Hat Inc. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This work is licensed under the terms of the GNU GPL, version 2 | 
					
						
							|  |  |  | # or (at your option) any later version. See the COPYING file in | 
					
						
							|  |  |  | # the top-level directory. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | import os | 
					
						
							|  |  |  | import subprocess | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from pathlib import Path | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if len(sys.argv) != 1: | 
					
						
							|  |  |  |    print("syntax: %s" % sys.argv[0], file=sys.stderr) | 
					
						
							|  |  |  |    sys.exit(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | self_dir = Path(__file__).parent | 
					
						
							|  |  |  | src_dir = self_dir.parent.parent | 
					
						
							|  |  |  | dockerfiles_dir = Path(src_dir, "tests", "docker", "dockerfiles") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | lcitool_path = Path(self_dir, "libvirt-ci", "lcitool") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | lcitool_cmd = [lcitool_path, "--data-dir", self_dir] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def atomic_write(filename, content): | 
					
						
							|  |  |  |    tmp = filename.with_suffix(filename.suffix + ".tmp") | 
					
						
							|  |  |  |    try: | 
					
						
							|  |  |  |       with tmp.open("w") as fp: | 
					
						
							|  |  |  |          print(content, file=fp, end="") | 
					
						
							|  |  |  |          tmp.rename(filename) | 
					
						
							|  |  |  |    except Exception as ex: | 
					
						
							|  |  |  |       tmp.unlink() | 
					
						
							|  |  |  |       raise | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def generate(filename, cmd, trailer): | 
					
						
							|  |  |  |    print("Generate %s" % filename) | 
					
						
							|  |  |  |    lcitool=subprocess.run(cmd, capture_output=True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    if lcitool.returncode != 0: | 
					
						
							|  |  |  |       raise Exception("Failed to generate %s: %s" % (filename, lcitool.stderr)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    content = lcitool.stdout.decode("utf8") | 
					
						
							|  |  |  |    if trailer is not None: | 
					
						
							|  |  |  |       content += trailer | 
					
						
							|  |  |  |    atomic_write(filename, content) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def generate_dockerfile(host, target, cross=None, trailer=None): | 
					
						
							|  |  |  |    filename = Path(src_dir, "tests", "docker", "dockerfiles", host + ".docker") | 
					
						
							|  |  |  |    cmd = lcitool_cmd + ["dockerfile"] | 
					
						
							|  |  |  |    if cross is not None: | 
					
						
							|  |  |  |       cmd.extend(["--cross", cross]) | 
					
						
							|  |  |  |    cmd.extend([target, "qemu"]) | 
					
						
							|  |  |  |    generate(filename, cmd, trailer) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:49 +00:00
										 |  |  | def generate_cirrus(target, trailer=None): | 
					
						
							|  |  |  |    filename = Path(src_dir, ".gitlab-ci.d", "cirrus", target + ".vars") | 
					
						
							| 
									
										
										
										
											2022-02-04 20:43:16 +00:00
										 |  |  |    cmd = lcitool_cmd + ["variables", target, "qemu"] | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:49 +00:00
										 |  |  |    generate(filename, cmd, trailer) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:45 +00:00
										 |  |  | ubuntu1804_skipssh = [ | 
					
						
							|  |  |  |    "# https://bugs.launchpad.net/qemu/+bug/1838763\n", | 
					
						
							|  |  |  |    "ENV QEMU_CONFIGURE_OPTS --disable-libssh\n" | 
					
						
							|  |  |  | ] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:46 +00:00
										 |  |  | ubuntu2004_tsanhack = [ | 
					
						
							|  |  |  |    "# Apply patch https://reviews.llvm.org/D75820\n", | 
					
						
							|  |  |  |    "# This is required for TSan in clang-10 to compile with QEMU.\n", | 
					
						
							|  |  |  |    "RUN sed -i 's/^const/static const/g' /usr/lib/llvm-10/lib/clang/10.0.0/include/sanitizer/tsan_interface.h\n" | 
					
						
							|  |  |  | ] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-25 17:20:07 +00:00
										 |  |  | def debian_cross_build(prefix, targets): | 
					
						
							|  |  |  |    conf = "ENV QEMU_CONFIGURE_OPTS --cross-prefix=%s\n" % (prefix) | 
					
						
							|  |  |  |    targets = "ENV DEF_TARGET_LIST %s\n" % (targets) | 
					
						
							|  |  |  |    return "".join([conf, targets]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:42 +00:00
										 |  |  | try: | 
					
						
							| 
									
										
										
										
											2022-02-04 20:43:24 +00:00
										 |  |  |    generate_dockerfile("centos8", "centos-stream-8") | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:44 +00:00
										 |  |  |    generate_dockerfile("fedora", "fedora-35") | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:45 +00:00
										 |  |  |    generate_dockerfile("ubuntu1804", "ubuntu-1804", | 
					
						
							|  |  |  |                        trailer="".join(ubuntu1804_skipssh)) | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:46 +00:00
										 |  |  |    generate_dockerfile("ubuntu2004", "ubuntu-2004", | 
					
						
							|  |  |  |                        trailer="".join(ubuntu2004_tsanhack)) | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:47 +00:00
										 |  |  |    generate_dockerfile("opensuse-leap", "opensuse-leap-152") | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:53 +00:00
										 |  |  |    generate_dockerfile("alpine", "alpine-edge") | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-25 17:20:07 +00:00
										 |  |  |    generate_dockerfile("debian-arm64-cross", "debian-11", | 
					
						
							|  |  |  |                        cross="aarch64", | 
					
						
							|  |  |  |                        trailer=debian_cross_build("aarch64-linux-gnu-", | 
					
						
							|  |  |  |                                                   "aarch64-softmmu,aarch64-linux-user")) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:49 +00:00
										 |  |  |    generate_cirrus("freebsd-12") | 
					
						
							|  |  |  |    generate_cirrus("freebsd-13") | 
					
						
							|  |  |  |    generate_cirrus("macos-11") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-05 13:49:42 +00:00
										 |  |  |    sys.exit(0) | 
					
						
							|  |  |  | except Exception as ex: | 
					
						
							|  |  |  |    print(str(ex), file=sys.stderr) | 
					
						
							|  |  |  |    sys.exit(1) |