forked from genofire/meshviewer-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
59 lines (59 loc) · 1.72 KB
/
circle.yml
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
version: 2
jobs:
build:
docker:
- image: circleci/golang:latest
working_directory: /go/src/github.com/genofire/meshviewer-collector
steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run: go get -t -d -v ./...
- run: go install github.com/genofire/meshviewer-collector
- store_artifacts:
path: /go/bin/
destination: meshviewer-collector
test_cover:
docker:
- image: circleci/golang:latest
working_directory: /go/src/github.com/genofire/meshviewer-collector
steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run: go get -t -d -v ./...
- run: go get github.com/mattn/goveralls
- run: go get golang.org/x/tools/cmd/cover
- run: ./.test-coverage circle-ci
- store_test_results:
path: ./
destination: profile.cov
test_race:
docker:
- image: circleci/golang:latest
working_directory: /go/src/github.com/genofire/meshviewer-collector
steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run: go get -t -d -v ./...
- run: go test -race ./...
config_validate:
docker:
- image: circleci/golang:latest
working_directory: /go/src/github.com/genofire/meshviewer-collector
steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run: go get -t -d -v ./...
- run: go install github.com/genofire/meshviewer-collector
- run: meshviewer-collector config-validate
workflows:
version: 2
build_and_tests:
jobs:
- build
- test_cover
- test_race
- config_validate