| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| """Script for pushing manifest files to docker that point to AMD64 and ARM |
| images.""" |
| import logging |
| import subprocess |
| import sys |
|
|
|
|
| def push_manifest(image): |
| """Pushes a manifest file in place of |image| for ARM and AMD64 versions of |
| that image.""" |
| subprocess.run(['docker', 'pull', image], check=True) |
| amd64_image = f'{image}:manifest-amd64' |
| subprocess.run(['docker', 'tag', image, amd64_image], check=True) |
| subprocess.run(['docker', 'push', amd64_image], check=True) |
|
|
| arm_version = f'{image}-testing-arm' |
| subprocess.run(['docker', 'pull', arm_version], check=True) |
| arm64_image = f'{image}:manifest-arm64v8' |
| subprocess.run(['docker', 'tag', arm_version, arm64_image], check=True) |
|
|
| subprocess.run([ |
| 'docker', 'manifest', 'create', image, '--amend', arm64_image, '--amend', |
| amd64_image |
| ], |
| check=True) |
| subprocess.run(['docker', 'manifest', 'push', image], check=True) |
| return True |
|
|
|
|
| def main(): |
| """Sets up manifests for base-builder and base-runner so they can be used for |
| ARM builds.""" |
| logging.info('Doing simple gcloud command to ensure 2FA passes. ' |
| 'Otherwise docker push fails.') |
| subprocess.run(['gcloud', 'projects', 'list', '--limit=1'], check=True) |
|
|
| images = [ |
| 'ghcr.io/aixcc-finals/base-builder', 'ghcr.io/aixcc-finals/base-runner' |
| ] |
| results = [push_manifest(image) for image in images] |
| return 0 if all(results) else 1 |
|
|
|
|
| if __name__ == '__main__': |
| sys.exit(main()) |
|
|