aboutsummaryrefslogtreecommitdiff
path: root/profiles/test.conf
blob: ad0c1ff7739d9f3b4068823977b8d5a4c72e9a3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
### 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"
  }
}