alpine-zdt-images/profiles/test.conf
tomalok 88f3f1374e
Autodetect Current Revision of Alpine Version (#113)
* continue to use provided 'release' value if specified
* continue to use 'edge' for edge versions
* deduce 'release' value from the version on the alpine-base APK in https://dl-cdn.alpinelinux.org/alpine/v<version/main/<arch>/ 
* update test profile with 3.13
2021-02-02 20:13:33 -08:00

39 lines
1.3 KiB
Plaintext

### Profile for Testing Builds
# vim: ts=2 et:
version-3_13 { include required("version/3.13") }
version-3_12 { include required("version/3.12") }
version-3_11 { include required("version/3.11") }
version-3_10 { include required("version/3.10") }
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 {
#bootloader = "EFI_STUB" # currently does not work
ami_name_prefix = "test-"
ami_desc_prefix = "Alpine Test "
ami_user = "test"
setup_script = scripts/test-setup_script.sh
setup_copy {
base = profiles/base
aarch64 = profiles/arch/aarch64
}
}
# Build definitions
BUILDS {
# merge version, arch, profile, and build vars
v3_13-x86_64 = ${version-3_13} ${arch-x86_64} ${test}
v3_12-x86_64 = ${version-3_12} ${arch-x86_64} ${test}
v3_11-x86_64 = ${version-3_11} ${arch-x86_64} ${test} { revision = "r1" }
v3_10-x86_64 = ${version-3_10} ${arch-x86_64} ${test} { revision = "r2" }
edge-x86_64 = ${version-edge} ${arch-x86_64} ${test}
v3_13-aarch64 = ${version-3_13} ${arch-aarch64} ${test}
v3_12-aarch64 = ${version-3_12} ${arch-aarch64} ${test}
edge-aarch64 = ${version-edge} ${arch-aarch64} ${test}
}