summary refs log blame commit diff stats
path: root/build/ci/drone.yml
blob: 2e1b9b0777ffa6787253163e96cea43c2b35e041 (plain) (tree)



























                        
---
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