1
0
mirror of https://github.com/volatiletech/authboss.git synced 2025-01-06 03:54:17 +02:00

Remove unnecessary circle due to gopkg.in

This commit is contained in:
Aaron L 2016-12-19 22:52:57 -08:00
parent 0c3d6d26ca
commit bc55489bc6

View File

@ -1,34 +1,16 @@
machine:
environment:
GOPATH: "${HOME}/.go_project"
checkout:
post:
- mkdir -p /home/ubuntu/.go_project/src/gopkg.in
- ln -s /home/ubuntu/authboss /home/ubuntu/.go_project/src/github.com/go-authboss/authboss
dependencies:
override:
- cd /home/ubuntu/.go_project/src/github.com/go-authboss/authboss && go get -t -d -v ./...
- cd /home/ubuntu/.go_project/src/github.com/go-authboss/authboss && go build -v
test:
pre:
- go get github.com/jstemmer/go-junit-report
- go get github.com/mattn/goveralls
override:
- go test -v -race ./... > $CIRCLE_ARTIFACTS/gotest.txt
- >
cd /home/ubuntu/.go_project/src/github.com/go-authboss/authboss &&
go test -v -race ./... > $CIRCLE_ARTIFACTS/gotest.txt
- >
cd /home/ubuntu/.go_project/src/github.com/go-authboss/authboss &&
echo "mode: set" > $CIRCLE_ARTIFACTS/coverage.txt &&
for i in $(go list ./...); do
rm -f coverage.tmp;
go test -v -coverprofile coverage.tmp $i &&
go test -v -coverprofile coverage.tmp $i;
tail -n +2 coverage.tmp >> $CIRCLE_ARTIFACTS/coverage.txt;
done
post:
- cat $CIRCLE_ARTIFACTS/gotest.txt | /home/ubuntu/.go_project/bin/go-junit-report > $CIRCLE_TEST_REPORTS/junit.xml
- >
if [ -n "$COVERALLS_TOKEN" ]; then
cd /home/ubuntu/.go_project/src/github.com/go-authboss/authboss &&
/home/ubuntu/.go_project/bin/goveralls -coverprofile=$CIRCLE_ARTIFACTS/coverage.txt -service=circle-ci -repotoken=$COVERALLS_TOKEN;
fi
- cat $CIRCLE_ARTIFACTS/gotest.txt | go-junit-report > $CIRCLE_TEST_REPORTS/junit.xml
- goveralls -coverprofile=$CIRCLE_ARTIFACTS/coverage.txt -service=circle-ci -repotoken=$COVERALLS_TOKEN