drone force modules
the build failed Details

This commit is contained in:
Dan Ballard 2019-11-06 11:40:58 -08:00
parent 725f64020a
commit 61f89d7b2c
1 changed files with 8 additions and 0 deletions

View File

@ -5,6 +5,8 @@ workspace:
pipeline:
fetch:
image: golang
environment:
- GO111MODULE=on
commands:
- wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/master/tor/tor
- wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/master/tor/torrc
@ -13,15 +15,21 @@ pipeline:
- go get -u github.com/golang/lint/golint
quality:
image: golang
environment:
- GO111MODULE=on
commands:
- go list ./... | xargs go vet
- go list ./... | grep -v "/wire/" | xargs golint -set_exit_status
units-tests:
image: golang
environment:
- GO111MODULE=on
commands:
- sh testing/tests.sh
integ-test:
image: golang
environment:
- GO111MODULE=on
commands:
- ./tor -f ./torrc
- sleep 15