mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 10:11:03 +00:00
26 lines
528 B
YAML
26 lines
528 B
YAML
general:
|
|
branches:
|
|
ignore:
|
|
- gh-pages
|
|
|
|
machine:
|
|
services:
|
|
- docker
|
|
environment:
|
|
GOPATH: /home/ubuntu:$GOPATH
|
|
SRCDIR: /home/ubuntu/src/github.com/weaveworks/scope
|
|
PATH: $PATH:$HOME/.local/bin
|
|
|
|
dependencies:
|
|
post:
|
|
- go get github.com/mattn/goveralls
|
|
- mkdir -p $(dirname $SRCDIR)
|
|
- cp -r $(pwd)/ $SRCDIR
|
|
|
|
test:
|
|
override:
|
|
- cd $SRCDIR; make
|
|
- cd $SRCDIR; ./bin/test
|
|
post:
|
|
- goveralls -repotoken $COVERALLS_REPO_TOKEN -coverprofile=$SRCDIR/profile.cov -service=circleci
|