diff --git a/.circleci/config.yml b/.circleci/config.yml index 97bc74341377da4b407b7d83f4cd3923d6219c5c..c79576243755bf5e82e375c04d3f451bb18f5f52 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,4 +17,6 @@ jobs: - run: go get github.com/mattn/goveralls - run: go test -v -cover -coverprofile=coverage.out ./... - run: goveralls -coverprofile=coverage.out -service=circle-ci -repotoken=$COVERALLS_TOKEN - - run: go install github.com/bio-routing/bio-rd + - run: go install github.com/bio-routing/bio-rd/examples/bgp + - run: go install github.com/bio-routing/bio-rd/examples/bmp + - run: go install github.com/bio-routing/bio-rd/examples/netlink diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 346cb7f73bbe26b52de9274352973cb2f8743d79..0000000000000000000000000000000000000000 --- a/.travis.yml +++ /dev/null @@ -1,27 +0,0 @@ -dist: trusty - -addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - wget - - pkg-config - - zip - - g++ - - zlib1g-dev - - unzip - - python - -language: go - -go: - - 1.11.1 - -script: -- mkdir -p $HOME/gopath/src/github.com/bio-routing/ -- ln -s $TRAVIS_BUILD_DIR $HOME/gopath/src/github.com/bio-routing/bio-rd || true -- cd $HOME/gopath/src/github.com/bio-routing/bio-rd -- go test -v -cover -coverprofile=coverage.out ./... -- go install github.com/bio-routing/bio-rd/vendor/github.com/q3k/goveralls/ -- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -merge=false