summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIWASE Yusuke <iwase.yusuke0@gmail.com>2017-10-13 14:33:41 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2017-11-07 10:19:17 +0900
commit92793f371dbb0e48075287c39bdcf6ee74e85164 (patch)
tree40e7f61bd305ddd47d78ba067338ee18d62ada4a
parenta5715a7bc3c4c73a6f4d3a91980bbfe681969b94 (diff)
travis: Update .travis.yml
For scenario_test, Python build environment is more suitable rather than Go build environment, because scenario_test is written in Python and the building source codes will be done on Docker containers. This patch fixes scenario_test to use Python build environment and reduces "sudo" executions in order to use interpreter of virtualenv. Note: On Travis-Ci, the Python interpreter of sudoer is older version, and when install packages with "sudo pip", InsecurePlatformWarning will be displayed. So it is better to use the newer interpreter of virtualenv. Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
-rw-r--r--.travis.yml59
-rwxr-xr-xtest/scenario_test/ci-scripts/travis-build-script.sh5
-rwxr-xr-xtest/scenario_test/ci-scripts/travis-install-script.sh7
3 files changed, 31 insertions, 40 deletions
diff --git a/.travis.yml b/.travis.yml
index 18ddbefa..5bfecfad 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,32 +1,39 @@
language: go
-before_install:
- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo sysctl -w net.ipv6.conf.all.disable_ipv6=0; fi
- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo sysctl -w net.ipv6.conf.default.disable_ipv6=0; fi
- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo sysctl -w net.ipv6.conf.docker0.disable_ipv6=1; fi
-install: test/scenario_test/ci-scripts/travis-install-script.sh
-script: test/scenario_test/ci-scripts/travis-build-script.sh
+_go: &_go
+ go: 1.8
-_simple_install: &_simple_install
+_dep_ensure: &_dep_ensure
+ <<: *_go
before_install: go get -u github.com/golang/dep/cmd/dep
install: $GOPATH/bin/dep ensure
_unittest: &_unittest
- <<: *_simple_install
+ <<: *_dep_ensure
script: go test $(go list ./... | grep -v '/vendor/')
-_cross_compile: &_cross_compile
- go: 1.8
- <<: *_simple_install
- script: cd gobgpd && go build
+_build: &_build
+ <<: *_dep_ensure
+ script:
+ - go build -o ./gobgp/gobgp ./gobgp/
+ - go build -o ./gobgpd/gobgpd ./gobgpd/
-_no_install: &_no_install
- go: 1.8
- before_install: true
- install: true
+_python: &_python
+ language: python
+ python: "2.7"
_docker: &_docker
+ <<: *_python
sudo: required
+ before_install:
+ - test $TRAVIS_OS_NAME == "linux" && sudo sysctl -w net.ipv6.conf.all.disable_ipv6=0
+ - test $TRAVIS_OS_NAME == "linux" && sudo sysctl -w net.ipv6.conf.default.disable_ipv6=0
+ - test $TRAVIS_OS_NAME == "linux" && sudo sysctl -w net.ipv6.conf.docker0.disable_ipv6=1
+ install:
+ - pip install -r test/pip-requires.txt
+ - fab -f test/lib/base.py make_gobgp_ctn:tag=$DOCKER_IMAGE,from_image=$FROM_IMAGE
+ script:
+ - PYTHONPATH=test python test/scenario_test/$TEST --gobgp-image $DOCKER_IMAGE -x -s
services:
- docker
@@ -48,26 +55,25 @@ matrix:
after_success:
- test -n "$TRAVIS_TAG" && curl -sL https://git.io/goreleaser | bash
#
-# cross-compiile
+# Cross-compile
#
- - <<: *_cross_compile
+ - <<: *_build
env:
- GOOS=windows
- - <<: *_cross_compile
+ - <<: *_build
env:
- GOOS=freebsd
- - <<: *_cross_compile
+ - <<: *_build
env:
- GOOS=darwin
#
# Misc
#
- - <<: *_no_install
+ - <<: *_go
script: test -z "$(go fmt ./...)"
- - <<: *_no_install
+ - <<: *_go
script: test -z "$(go vet ./...)"
- - <<: *_simple_install
- go: 1.8
+ - <<: *_dep_ensure
script: python test/scenario_test/ci-scripts/build_embeded_go.py docs/sources/lib.md
#
# Docker
@@ -150,13 +156,10 @@ matrix:
#
# Spell Check
#
- - language: python
- python: "2.7"
- before_install: true
+ - <<: *_python
install: pip install scspell3k
script: bash tools/spell-check/scspell.sh
-
cache:
pip: true
diff --git a/test/scenario_test/ci-scripts/travis-build-script.sh b/test/scenario_test/ci-scripts/travis-build-script.sh
deleted file mode 100755
index 4fd654db..00000000
--- a/test/scenario_test/ci-scripts/travis-build-script.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/usr/bin/env sh
-
-echo "travis-build-script.sh"
-
-sudo PYTHONPATH=test python test/scenario_test/$TEST --gobgp-image $DOCKER_IMAGE -x -s
diff --git a/test/scenario_test/ci-scripts/travis-install-script.sh b/test/scenario_test/ci-scripts/travis-install-script.sh
deleted file mode 100755
index 5270ac21..00000000
--- a/test/scenario_test/ci-scripts/travis-install-script.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/usr/bin/env sh
-
-echo "travis-install-script.sh"
-
-sudo -H pip --quiet install -r test/pip-requires.txt
-
-sudo fab -f test/lib/base.py make_gobgp_ctn:tag=$DOCKER_IMAGE,from_image=$FROM_IMAGE