aboutsummaryrefslogtreecommitdiff
path: root/profiles/test.conf
blob: b4ecab8607868765a7e4ea7756d58493eaf2f273 (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
### Profile for Testing Builds
# vim: ts=2 et:

version-current { include required("version/current") }
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 {
    us-west-1 = true
    ap-east-1 = true
  }
}

# Build definitions
BUILDS {
  # merge version, arch, profile, and build vars
  current-x86_64  = ${version-current} ${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 subnet doesn't do a1.* instances
    build_subnet = "subnet-08dfc622745f7d96a"
  }
}