forked from tailhook/signal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvagga.yaml
42 lines (34 loc) · 1.01 KB
/
vagga.yaml
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
commands:
make: !Command
description: Build library and binaries
container: ubuntu
run: [cargo, build]
test: !Command
description: Run tests
container: ubuntu
run: [cargo, test]
cargo: !Command
description: Run any cargo command
container: ubuntu
run: [cargo]
doc: !Command
description: Build documentation
container: ubuntu
epilog: |
---------------------------------------------------------
Documentation is built under target/doc/signal/index.html
run: [cargo, doc]
containers:
ubuntu:
setup:
- !Ubuntu trusty
- !UbuntuUniverse
- !Install [make, checkinstall, wget, ca-certificates,
libssl-dev, build-essential]
- !Install [libreadline-dev] # for lua
- !TarInstall
url: "https://static.rust-lang.org/dist/rust-1.9.0-x86_64-unknown-linux-gnu.tar.gz"
script: "./install.sh --prefix=/usr \
--components=rustc,rust-std-x86_64-unknown-linux-gnu,cargo"
environ:
HOME: /work/target