원본 프로젝트 : cwtch.im/cwtch
1
0
포크 0

drone build configuration

This commit is contained in:
Dan Ballard 2018-06-29 23:38:08 -05:00
부모 2ba0b349e6
커밋 8bd9da974d
2개의 변경된 파일23개의 추가작업 그리고 1개의 파일을 삭제

23
.drone.yml Normal file
파일 보기

@ -0,0 +1,23 @@
workspace:
base: /go
path: src/cwtch.im/cwtch
pipeline:
build:
image: golang
commands:
- go list ./... | xargs go get
- go get -u github.com/golang/lint/golint
- go list ./... | xargs go vet
- go list ./... | xargs golint -set_exit_status
- sh testing/tests.sh
pipeline:
notify:
image: drillster/drone-email
host: build.openprivacy.ca
port: 25
skip_verify: true
from: dan@openprivacy.ca
when:
status: [ success, changed, failure ]

1
.gitignore vendored
파일 보기

@ -5,4 +5,3 @@
*.test
*/*test_*
*/*_test*
.*