summary refs log tree commit diff stats
path: root/build
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-03-26 23:31:01 +0530
committerAndinus <andinus@nand.sh>2020-03-26 23:31:01 +0530
commitca67db3c6ae21a392442eed0587fc87976de31a3 (patch)
treef2f640b10a817e57c62e3dbe96c857484ee9d9a7 /build
parent7a3e2f9552a063ac99f87e47b38e3fd14919fdf0 (diff)
downloadperseus-ca67db3c6ae21a392442eed0587fc87976de31a3.tar.gz
Add build files
Diffstat (limited to 'build')
-rw-r--r--build/ci/drone.yml38
1 files changed, 38 insertions, 0 deletions
diff --git a/build/ci/drone.yml b/build/ci/drone.yml
new file mode 100644
index 0000000..945b35b
--- /dev/null
+++ b/build/ci/drone.yml
@@ -0,0 +1,38 @@
+---
+kind: pipeline
+name: go-test
+
+steps:
+- name: test
+  image: golang:1.13
+  commands:
+  - go test -v ./...
+
+---
+kind: pipeline
+name: go-build
+
+steps:
+- name: build-obsd
+  image: golang:1.13
+  environment:
+    GOARCH: amd64
+    GOOS: openbsd
+  commands:
+  - go build ./cmd/perseus
+
+- name: build-linux
+  image: golang:1.13
+  environment:
+    GOARCH: amd64
+    GOOS: linux
+  commands:
+  - go build ./cmd/perseus
+
+- name: build-darwin
+  image: golang:1.13
+  environment:
+    GOARCH: amd64
+    GOOS: darwin
+  commands:
+  - go build ./cmd/perseus
tle='author Ben Morrison <ben@gbmor.dev> 2019-06-08 03:08:20 -0400 committer Ben Morrison <ben@gbmor.dev> 2019-06-08 03:08:20 -0400 added sqlite3 as option' href='/gbmor/getwtxt/commit/getwtxt.yml?h=v0.4.14&id=62c714ae9880f8f6f2d81be12f95024f17ae486e'>62c714a ^
887c25e ^


daa4853 ^


579c0be ^




daa4853 ^



69217dd ^
daa4853 ^
1e0e919 ^




daa4853 ^
















1e0e919 ^



daa4853 ^

c5cf0e1 ^

daa4853 ^

c5cf0e1 ^
daa4853 ^



c5cf0e1 ^
daa4853 ^

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
96
97
98
99
100
101
102
103
104
105
106