-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildpack.toml
79 lines (66 loc) · 2.5 KB
/
buildpack.toml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Copyright (c) The Amphitheatre Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
api = "0.8"
[buildpack]
description = "A Cloud Native Buildpack that provides the Aptos Tool Suite"
homepage = "https://github.com/amp-buildpacks/aptos"
id = "amp-buildpacks/aptos"
keywords = ["Aptos"]
sbom-formats = ["application/vnd.cyclonedx+json", "application/vnd.syft+json"]
name = "AMP Buildpack for Aptos"
version = "{{ .version }}"
[[buildpack.licenses]]
type = "Apache-2.0"
uri = "https://github.com/amp-buildpacks/aptos/blob/main/LICENSE"
[metadata]
include-files = ["LICENSE", "README.md", "linux/amd64/bin/build", "linux/amd64/bin/detect", "linux/amd64/bin/main", "linux/arm64/bin/build", "linux/arm64/bin/detect", "linux/arm64/bin/main", "buildpack.toml"]
pre-package = "scripts/build.sh"
[[metadata.configurations]]
build = true
default = "2.4.0"
description = "The Aptos version"
name = "BP_APTOS_VERSION"
[[metadata.configurations]]
build = true
default = "true"
description = "Enable the Aptos deploy"
name = "BP_ENABLE_APTOS_DEPLOY"
[[metadata.configurations]]
build = true
description = "Configure the wallet private key for Aptos deploy"
name = "BP_APTOS_DEPLOY_PRIVATE_KEY"
[[metadata.configurations]]
build = true
default = "devnet"
description = "Configure the network for Aptos deploy"
name = "BP_APTOS_DEPLOY_NETWORK"
[[metadata.dependencies]]
id = "aptos"
name = "Aptos"
purl = "pkg:generic/[email protected]"
sha256 = "b77ce25ca98b1998ef0c9b1a4f45c96e68e49ceae27d98f5bcdc3c79e88106f1"
uri = "https://github.com/aptos-labs/aptos-core/releases/download/aptos-cli-v2.4.0/aptos-cli-2.4.0-Ubuntu-22.04-x86_64.zip"
stacks = ["*"]
version = "2.4.0"
[[metadata.dependencies.licenses]]
type = "Apache-2.0"
uri = "https://github.com/aptos-labs/aptos-core/blob/main/LICENSE"
[[stacks]]
id = "*"
[[targets]]
arch = "amd64"
os = "linux"
[[targets]]
arch = "arm64"
os = "linux"