alpine-zdt-images/profiles/test.conf
Jake Buchholz 2ef5df0927 * 3.10.0 has landed!
* switch build name from 'current-x86_64' to 'v#_#-x86_64' to avoid  any confusion when new versions roll out
* resolvie-alpine.py.in - only warn about disabled regions once, instead of for each profile build
* make-amis - tweak script output
* new set of AMIs for edge, 3.10.0, and 3.9.4
2019-07-05 12:51:09 -07:00

37 lines
1.1 KiB
Plaintext

### Profile for Testing Builds
# vim: ts=2 et:
version-3_10 { include required("version/3.10") }
version-3_9 { include required("version/3.9") }
version-edge { include required("version/edge") }
arch-x86_64 { include required("arch/x86_64") }
arch-aarch64 { include required("arch/aarch64") }
# specific to this profile's builds
test {
# default revision is 'r0', recomment/reset for each new version release!
#revision = "r0"
ami_name_prefix = "test-"
ami_desc_prefix = "Alpine Test "
build_region = "us-west-2"
build_subnet = "subnet-033a30d7b5220d177"
ami_regions {
ap-east-1 = true
}
}
# Build definitions
BUILDS {
# merge version, arch, profile, and build vars
v3_10-x86_64 = ${version-3_10} ${arch-x86_64} ${test}
v3_9-x86_64 = ${version-3_9} ${arch-x86_64} ${test}
edge-x86_64 = ${version-edge} ${arch-x86_64} ${test}
# aarch64 AMI builds are under development
edge-aarch64 = ${version-edge} ${arch-aarch64} ${test} {
# other us-west-2 subnet doesn't do a1.* instances
build_subnet = "subnet-08dfc622745f7d96a"
}
}