forked from hashicorp/packer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpacker-artifacts.hcl
59 lines (58 loc) · 2.54 KB
/
packer-artifacts.hcl
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
schema = 1
artifacts {
zip = [
"packer_${version}_darwin_amd64.zip",
"packer_${version}_darwin_arm64.zip",
"packer_${version}_freebsd_386.zip",
"packer_${version}_freebsd_amd64.zip",
"packer_${version}_freebsd_arm.zip",
"packer_${version}_linux_386.zip",
"packer_${version}_linux_amd64.zip",
"packer_${version}_linux_arm.zip",
"packer_${version}_linux_arm64.zip",
"packer_${version}_linux_ppc64le.zip",
"packer_${version}_netbsd_386.zip",
"packer_${version}_netbsd_amd64.zip",
"packer_${version}_netbsd_arm.zip",
"packer_${version}_openbsd_386.zip",
"packer_${version}_openbsd_amd64.zip",
"packer_${version}_openbsd_arm.zip",
"packer_${version}_solaris_amd64.zip",
"packer_${version}_windows_386.zip",
"packer_${version}_windows_amd64.zip",
]
rpm = [
"packer-${version_linux}-1.aarch64.rpm",
"packer-${version_linux}-1.armv7hl.rpm",
"packer-${version_linux}-1.i386.rpm",
"packer-${version_linux}-1.ppc64le.rpm",
"packer-${version_linux}-1.x86_64.rpm",
]
deb = [
"packer_${version_linux}-1_amd64.deb",
"packer_${version_linux}-1_arm64.deb",
"packer_${version_linux}-1_armhf.deb",
"packer_${version_linux}-1_i386.deb",
"packer_${version_linux}-1_ppc64el.deb",
]
container = [
"packer_release-full_linux_386_${version}_${commit_sha}.docker.dev.tar",
"packer_release-full_linux_386_${version}_${commit_sha}.docker.tar",
"packer_release-full_linux_amd64_${version}_${commit_sha}.docker.dev.tar",
"packer_release-full_linux_amd64_${version}_${commit_sha}.docker.tar",
"packer_release-full_linux_arm64_${version}_${commit_sha}.docker.dev.tar",
"packer_release-full_linux_arm64_${version}_${commit_sha}.docker.tar",
"packer_release-full_linux_arm_${version}_${commit_sha}.docker.dev.tar",
"packer_release-full_linux_arm_${version}_${commit_sha}.docker.tar",
"packer_release-light_linux_386_${version}_${commit_sha}.docker.dev.tar",
"packer_release-light_linux_386_${version}_${commit_sha}.docker.tar",
"packer_release-light_linux_amd64_${version}_${commit_sha}.docker.dev.tar",
"packer_release-light_linux_amd64_${version}_${commit_sha}.docker.tar",
"packer_release-light_linux_arm64_${version}_${commit_sha}.docker.dev.tar",
"packer_release-light_linux_arm64_${version}_${commit_sha}.docker.tar",
"packer_release-light_linux_arm_${version}_${commit_sha}.docker.dev.tar",
"packer_release-light_linux_arm_${version}_${commit_sha}.docker.tar",
]
}