aboutsummaryrefslogtreecommitdiff
path: root/profiles/alpine.conf
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/alpine.conf')
-rw-r--r--profiles/alpine.conf12
1 files changed, 7 insertions, 5 deletions
diff --git a/profiles/alpine.conf b/profiles/alpine.conf
index b5ada55..e282e6f 100644
--- a/profiles/alpine.conf
+++ b/profiles/alpine.conf
@@ -1,9 +1,10 @@
1### Profile for Building the Publically-Available Alpine Linux AMIs 1### Profile for Building the Publically-Available Alpine Linux AMIs
2# vim: ts=2 et: 2# vim: ts=2 et:
3 3
4version-current { include required("version/current") } 4version-3_10 { include required("version/3.10") }
5version-edge { include required("version/edge") } 5version-3_9 { include required("version/3.9") }
6arch-x86_64 { include required("arch/x86_64") } 6version-edge { include required("version/edge") }
7arch-x86_64 { include required("arch/x86_64") }
7 8
8# profile vars 9# profile vars
9alpine { 10alpine {
@@ -25,6 +26,7 @@ alpine {
25# Build definitions 26# Build definitions
26BUILDS { 27BUILDS {
27 # merge version, arch, and profile vars 28 # merge version, arch, and profile vars
28 current-x86_64 = ${version-current} ${arch-x86_64} ${alpine} 29 v3_10-x86_64 = ${version-3_10} ${arch-x86_64} ${alpine}
29 edge-x86_64 = ${version-edge} ${arch-x86_64} ${alpine} 30 v3_9-x86_64 = ${version-3_9} ${arch-x86_64} ${alpine}
31 edge-x86_64 = ${version-edge} ${arch-x86_64} ${alpine}
30} 32}