-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbobob.json
39 lines (39 loc) · 1.01 KB
/
turbobob.json
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
{
"for_description_of_this_file_see": "https://github.com/function61/turbobob",
"version_major": 1,
"project_name": "certbus",
"project_emoji_icon": "🔒",
"builders": [
{
"name": "default",
"uses": "docker://fn61/buildkit-golang:20220115_1318_71191646",
"mount_source": "",
"mount_destination": "/workspace",
"workdir": "/workspace",
"commands": {
"build": ["build-go-project.sh", "--directory=cmd/certbus/", "--binary-basename=certbus"],
"dev": ["bash"]
},
"dev_shell_commands": [
{ "command": "source enckeys_and_envs/env-prod.env", "important": true },
{ "command": "rel/certbus_linux-amd64 cert ls", "important": true }
]
},
{
"name": "publisher",
"uses": "docker://fn61/buildkit-publisher:20200228_1755_83c203ff",
"mount_destination": "/workspace",
"commands": {
"publish": ["publish-gh.sh", "function61/certbus", "rel/"],
"dev": ["bash"]
},
"pass_envs": [
"GITHUB_TOKEN",
"EVENTHORIZON"
]
}
],
"os_arches": {
"linux-amd64": true
}
}