Skip to content
Snippets Groups Projects
Commit 316df42d authored by Konstantinos Sideris's avatar Konstantinos Sideris
Browse files

Remove docker cache

parent 4badb8b5
No related branches found
No related tags found
No related merge requests found
......@@ -10,16 +10,6 @@ services:
notifications:
email: false
before_cache:
# Save tagged docker images
- >
mkdir -p $HOME/docker && docker images -a --filter='dangling=false' --format '{{.Repository}}:{{.Tag}} {{.ID}}'
| xargs -n 2 -t sh -c 'test -e $HOME/docker/$1.tar.gz || docker save $0 | gzip -2 > $HOME/docker/$1.tar.gz'
cache:
directories:
- $HOME/docker
matrix:
include:
- os: osx
......@@ -37,10 +27,6 @@ matrix:
- CXX_VERSION=clang++-6.0
- CC_VERSION=clang-6.0
before_install:
# Load cached docker images
- if [[ -d $HOME/docker ]]; then ls $HOME/docker/*.tar.gz | xargs -I {file} sh -c "zcat {file} | docker load"; fi
install:
- ./.ci/install.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment