From 6158da01795b89d51e8ddb96541cdc24b0494eef Mon Sep 17 00:00:00 2001 From: Uladzislau Muraveika Date: Wed, 26 Jun 2024 12:10:22 +0300 Subject: [PATCH] Fix: travis CI changed the way how we install docker - travis updated their basic image and add Docker via docker.list, so I've checked how addon instruction is working under the hood - this is just a tee to sources.list, so I've changed docker.list to have the latest stable Docker --- .travis.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 27e9a96cac..22f0716d77 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,12 +14,8 @@ env: - TEST="bash ./scripts/travis_rosetta_checker.sh" # upgrade docker to latest stable version -addons: - apt: - sources: - - sourceline: deb https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable - packages: - - docker.io +before_install: + - echo "deb https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list >/dev/null install: # default working directory with source code is automatically set to