cwtch/.drone.yml

65 lines
1.6 KiB
YAML
Raw Permalink Normal View History

2018-06-30 04:38:08 +00:00
workspace:
base: /go
path: src/cwtch.im/cwtch
pipeline:
fetch:
2018-06-30 04:38:08 +00:00
image: golang
2019-11-01 19:22:43 +00:00
when:
repo: cwtch.im/cwtch
branch: master
event: [ push, pull_request ]
2018-06-30 04:38:08 +00:00
commands:
- wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/master/tor/tor
- wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/master/tor/torrc
- chmod a+x tor
- go get -u golang.org/x/lint/golint
2019-08-13 18:28:52 +00:00
- export GO111MODULE=on
2019-08-13 19:07:55 +00:00
- go mod vendor
quality:
image: golang
2019-11-01 19:22:43 +00:00
when:
repo: cwtch.im/cwtch
branch: master
event: [ push, pull_request ]
commands:
2018-06-30 04:38:08 +00:00
- go list ./... | xargs go vet
- go list ./... | xargs golint -set_exit_status
units-tests:
image: golang
2019-11-01 19:22:43 +00:00
when:
repo: cwtch.im/cwtch
branch: master
event: [ push, pull_request ]
commands:
- export PATH=$PATH:/go/src/cwtch.im/cwtch
2018-06-30 05:55:22 +00:00
- sh testing/tests.sh
integ-test:
image: golang
2019-11-01 19:22:43 +00:00
when:
repo: cwtch.im/cwtch
branch: master
event: [ push, pull_request ]
commands:
- go test -race -v cwtch.im/cwtch/testing/
notify-email:
image: drillster/drone-email
host: build.openprivacy.ca
port: 25
skip_verify: true
2018-07-02 15:36:05 +00:00
from: drone@openprivacy.ca
when:
2019-11-01 19:22:43 +00:00
repo: cwtch.im/cwtch
branch: master
event: [ push, pull_request ]
2018-11-21 23:54:03 +00:00
status: [ failure ]
notify-gogs:
image: openpriv/drone-gogs
2018-07-02 16:09:49 +00:00
when:
2019-11-01 19:22:43 +00:00
repo: cwtch.im/cwtch
branch: master
event: pull_request
2018-08-05 17:05:40 +00:00
status: [ success, changed, failure ]
2018-07-08 01:14:42 +00:00
secrets: [gogs_account_token]
gogs_url: https://git.openprivacy.ca