forked from gluster/glusterd2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwercker.yml
More file actions
36 lines (27 loc) · 708 Bytes
/
wercker.yml
File metadata and controls
36 lines (27 loc) · 708 Bytes
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
box: golang:1.5
build:
steps:
- wercker/setup-go-workspace:
package_dir: github.com/gluster/glusterd2
- script:
name: enable go1.5 vendoring experiment
code: export GO15VENDOREXPERIMENT=1
- script:
name: install build and test requirements
code: |
./scripts/install-reqs.sh
- script:
name: sync vendored packages
code: make vendor-update
- script:
name: run linters
code: make verify
- script:
name: test build
code: make glusterd2
- script:
name: run unit tests
code: make test
- script:
name: cleanup GLIDE_HOME
code: rm -rf $TMPDIR