summary refs log tree commit diff stats
path: root/build/ci/drone.yml
diff options
context:
space:
mode:
Diffstat (limited to 'build/ci/drone.yml')
-rw-r--r--build/ci/drone.yml23
1 files changed, 14 insertions, 9 deletions
diff --git a/build/ci/drone.yml b/build/ci/drone.yml
index a169270..1248b48 100644
--- a/build/ci/drone.yml
+++ b/build/ci/drone.yml
@@ -1,38 +1,43 @@
 ---
 kind: pipeline
-name: go-test
+name: testing
 
 steps:
+- name: vet
+  image: golang:1.13
+  commands:
+    - go vet ./...
+
 - name: test
   image: golang:1.13
   commands:
-  - go test -v ./...
+    - go test -v ./...
 
 ---
 kind: pipeline
-name: go-build
+name: build
 
 steps:
-- name: build-obsd
+- name: openbsd-amd64
   image: golang:1.13
   environment:
     GOARCH: amd64
     GOOS: openbsd
   commands:
-  - go build ./cmd/cetus
+    - go build ./cmd/cetus
 
-- name: build-linux
+- name: linux-amd64
   image: golang:1.13
   environment:
     GOARCH: amd64
     GOOS: linux
   commands:
-  - go build ./cmd/cetus
+    - go build ./cmd/cetus
 
-- name: build-darwin
+- name: darwin-amd64
   image: golang:1.13
   environment:
     GOARCH: amd64
     GOOS: darwin
   commands:
-  - go build ./cmd/cetus
+    - go build ./cmd/cetus
/a>
a54c6f2e ^
91f76e6b ^












a54c6f2e ^
d8298d1a ^





a54c6f2e ^
a54c6f2e ^
d605ba1f ^




a54c6f2e ^
d605ba1f ^
a54c6f2e ^
d605ba1f ^





e42ae821 ^



















a54c6f2e ^

fa8d337d ^
91f76e6b ^
fa8d337d ^
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95