aboutsummaryrefslogtreecommitdiff
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2022-07-27 16:05:06 -0400
committerChris Evich <cevich@redhat.com>2022-08-03 14:25:09 -0400
commit1e4a141d881696948db52de5801d8ea64079ac0c (patch)
treef78a22efca8ebad7fde872521ab432e400d84fcf /.cirrus.yml
parent0f002c1600958948357f1eddb8e31f9240099335 (diff)
downloadpodman-1e4a141d881696948db52de5801d8ea64079ac0c.tar.gz
podman-1e4a141d881696948db52de5801d8ea64079ac0c.tar.bz2
podman-1e4a141d881696948db52de5801d8ea64079ac0c.zip
Cirrus: Support EC2 instances in hack/get_ci_vm.sh
***Depends on:*** https://github.com/containers/automation_images/pull/160 Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 9daf33ba2..223fc5b53 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -204,10 +204,11 @@ build_aarch64_task:
only_if: "$CIRRUS_CRON != 'multiarch'"
ec2_instance: &standard_build_ec2_aarch64
image: ${VM_IMAGE_NAME}
- type: t4g.xlarge
+ type: ${EC2_INST_TYPE}
region: us-east-1
architecture: arm64 # CAUTION: This has to be "arm64", not "aarch64".
env: &stdenvars_aarch64
+ EC2_INST_TYPE: "t4g.xlarge"
DISTRO_NV: ${FEDORA_AARCH64_NAME}
VM_IMAGE_NAME: ${FEDORA_AARCH64_AMI_ID}
CTR_FQIN: ${FEDORA_CONTAINER_FQIN}
@@ -695,9 +696,10 @@ podman_machine_task:
- rootless_integration_test
ec2_instance:
image: "${VM_IMAGE_NAME}"
- type: m5zn.metal # Bare-metal instance is required
+ type: "${EC2_INST_TYPE}"
region: us-east-1
env:
+ EC2_INST_TYPE: "m5zn.metal" # Bare-metal instance is required
TEST_FLAVOR: "machine"
PRIV_NAME: "rootless" # intended use-case
DISTRO_NV: "${FEDORA_NAME}"