-
Notifications
You must be signed in to change notification settings - Fork 5
/
module.tl
60 lines (60 loc) · 1.09 KB
/
module.tl
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
{
"imports": {
"base": "catalog:early.polydawn.io/monolith/busybash:v1:linux-amd64",
"go": "catalog:early.hyphae.polydawn.io/go:v1.10:linux-amd64",
"src": "ingest:git:.:HEAD"
},
"steps": {
"test": {
"operation": {
"inputs": {
"/": "base",
"/app/go": "go",
"/task": "src"
},
"action": {
"exec": [
"/bin/bash", "-c",
"export PATH=$PATH:/app/go/go/bin && export GOPATH=$PWD/.gopath && go test ./..."
]
}
}
},
"build": {
"operation": {
"inputs": {
"/": "base",
"/app/go": "go",
"/task": "src"
},
"action": {
"exec": [
"/bin/bash", "-c",
"export PATH=$PATH:/app/go/go/bin && export GOPATH=$PWD/.gopath && export GOBIN=$PWD/out/bin && go install ./cmd/*"
]
},
"outputs": {
"bin": "/task/out"
}
}
},
"smoke-test": {
"operation": {
"inputs": {
"/": "base",
"/task": "build.bin"
},
"action": {
"exec": [
"/bin/bash", "-c",
"./bin/repeatr -h"
]
}
}
}
},
"exports": {
"bin-linux-amd64": "build.bin",
"src": "src"
}
}