diff options
author | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2020-04-23 10:37:07 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2020-04-23 10:54:04 +0900 |
commit | 3bdfaf9123756c93236c5048f180eb61ad7f8a68 (patch) | |
tree | 54cf209ce82ddc9e8699dd05aae83cd1a38e2803 | |
parent | 70961173f156f0493c4402c485eb85c2acc4992c (diff) |
travis-ci: update ubuntu docker package url
Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index ee40a019..43771811 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,10 +29,10 @@ _docker: &_docker - 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 - - curl -fsSL https://apt.dockerproject.org/gpg | sudo apt-key add - - - sudo add-apt-repository "deb https://apt.dockerproject.org/repo ubuntu-trusty main" + - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - + - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu trusty main" - sudo apt-get update - - sudo apt-get -y install docker-engine=17.03.1~ce-0~ubuntu-trusty + - sudo apt-get -y --allow-downgrades install docker-ce=17.03.0~ce-0~ubuntu-trusty install: - pip3 install -r test/pip-requires.txt - fab -r test/lib make-gobgp-ctn --tag $DOCKER_IMAGE --from-image $FROM_IMAGE |