Remove setup steps unecessary when travis runs on darwin

Many of the setup/dev programs installed are not used because no testing
is executed on GOOS=darwin builds. Makes sense to remove them and make
darwin runs much shorter.

Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com>
This commit is contained in:
Phil Estes 2018-09-14 13:16:22 -04:00
parent 05984a966d
commit b215a65f7d
No known key found for this signature in database
GPG Key ID: 0F386284C03A1162

View File

@ -44,12 +44,12 @@ install:
- protoc --version - protoc --version
- go get -u github.com/vbatts/git-validation - go get -u github.com/vbatts/git-validation
- go get -u github.com/kunalkushwaha/ltag - go get -u github.com/kunalkushwaha/ltag
- sudo PATH=$PATH GOPATH=$GOPATH script/setup/install-runc - if [ "$TRAVIS_GOOS" = "linux" ]; then sudo PATH=$PATH GOPATH=$GOPATH script/setup/install-runc ; fi
- sudo PATH=$PATH GOPATH=$GOPATH script/setup/install-cni - if [ "$TRAVIS_GOOS" = "linux" ]; then sudo PATH=$PATH GOPATH=$GOPATH script/setup/install-cni ; fi
- sudo PATH=$PATH GOPATH=$GOPATH script/setup/install-critools - if [ "$TRAVIS_GOOS" = "linux" ]; then sudo PATH=$PATH GOPATH=$GOPATH script/setup/install-critools ; fi
- wget https://github.com/checkpoint-restore/criu/archive/v3.7.tar.gz -O /tmp/criu.tar.gz - if [ "$TRAVIS_GOOS" = "linux" ]; then wget https://github.com/checkpoint-restore/criu/archive/v3.7.tar.gz -O /tmp/criu.tar.gz ; fi
- tar -C /tmp/ -zxf /tmp/criu.tar.gz - if [ "$TRAVIS_GOOS" = "linux" ]; then tar -C /tmp/ -zxf /tmp/criu.tar.gz ; fi
- cd /tmp/criu-3.7 && sudo make install-criu - if [ "$TRAVIS_GOOS" = "linux" ]; then cd /tmp/criu-3.7 && sudo make install-criu ; fi
- cd $TRAVIS_BUILD_DIR - cd $TRAVIS_BUILD_DIR
script: script: