-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathturbobob.json
63 lines (63 loc) · 1.4 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"for_description_of_this_file_see": "https://github.com/function61/turbobob",
"version_major": 1,
"project_name": "passitron",
"subrepos": [
{
"source": "https://github.com/function61/f61ui.git",
"kind": "git",
"destination": "frontend/f61ui",
"revision": "4d32766"
}
],
"builders": [
{
"name": "default",
"uses": "docker://fn61/buildkit-golang:20200212_0907_06f93bc3",
"mount_destination": "/workspace",
"workdir": "/workspace",
"commands": {
"build": ["bin/build.sh"],
"dev": ["bash"]
},
"dev_ports": ["8091:443"]
},
{
"name": "frontend",
"uses": "docker://fn61/buildkit-js:20200320_1158_e60a9bb8",
"mount_destination": "/workspace",
"commands": {
"build": ["bin/build-frontend.sh"],
"dev": ["bash"]
}
},
{
"name": "docs",
"uses": "docker://fn61/buildkit-mkdocs:20190125_1601_a956d2b7",
"mount_destination": "/workspace",
"commands": {
"build": ["run-mkdocs.sh", "docs/", "rel/docs.tar.gz"],
"dev": ["bash"]
}
},
{
"name": "publisher",
"uses": "docker://fn61/buildkit-publisher:20190206_1058_d35b3939",
"mount_destination": "/workspace",
"commands": {
"publish": ["publish.sh", "rel/*"],
"dev": ["bash"]
},
"env": {
"BINTRAY_PROJECT": "function61/dl/pi-security-module"
},
"pass_envs": [
"BINTRAY_CREDS"
]
}
],
"os_arches": {
"linux-amd64": true,
"linux-arm": true
}
}