summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-03-26 13:49:48 +0530
committerAndinus <andinus@nand.sh>2020-03-26 14:22:10 +0530
commit945ea27d5ffb0c8d85a6bfa535a6cd21a1227ae3 (patch)
treebc1fdaa05e6e4a4ab66a50e98cc36f2cf6c000ab
parent9af848b93ffc76c1cd548ec46c4daa09cd83bbb9 (diff)
downloadcetus-945ea27d5ffb0c8d85a6bfa535a6cd21a1227ae3.tar.gz
Add drone ci build config
-rw-r--r--build/ci/drone.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/build/ci/drone.yml b/build/ci/drone.yml
new file mode 100644
index 0000000..2e1b9b0
--- /dev/null
+++ b/build/ci/drone.yml
@@ -0,0 +1,28 @@
+---
+kind: pipeline
+name: go-1-13
+
+steps:
+- name: build-obsd
+  image: golang:1.13
+  environment:
+    GOARCH: amd64
+    GOOS: openbsd
+  commands:
+  - go build ./cmd/cetus
+
+- name: build-linux
+  image: golang:1.13
+  environment:
+    GOARCH: amd64
+    GOOS: linux
+  commands:
+  - go build ./cmd/cetus
+
+- name: build-darwin
+  image: golang:1.13
+  environment:
+    GOARCH: amd64
+    GOOS: darwin
+  commands:
+  - go build ./cmd/cetus