blob: adda6ebd7d4f6da0002300f964b32031a525e510 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
version: "3"
tasks:
build:
desc: "Builds both the cthcous daemon and the container bridge binaries."
cmds:
- go build -o build/bridge git.rnrd.eu/cthcous/bridge
- go build -o build/cthcous git.rnrd.eu/cthcous
run:
desc: "Runs cthcous binary."
deps: [build]
cmds:
- build/cthcous
run-container:
desc: "Runs the container bridge binary."
deps: [build]
cmds:
- build/bridge
|