From 27d1d0a6a41059a6e499b137ef8b3cc50fb610b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Fri, 3 May 2024 15:49:15 +0200 Subject: [PATCH] Do not include Docker version in caching key We are now using Docker caching directly rather than downloading archives from S3, so it should not be needed. This should unblock reusing the cache locally. --- src/ci/docker/run.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ci/docker/run.sh b/src/ci/docker/run.sh index fcc507b572c..b9a559039e0 100755 --- a/src/ci/docker/run.sh +++ b/src/ci/docker/run.sh @@ -71,8 +71,6 @@ if [ -f "$docker_dir/$image/Dockerfile" ]; then # only run in x86_64 machines. uname -m >> $hash_key - docker --version >> $hash_key - # Include cache version. Can be used to manually bust the Docker cache. echo "2" >> $hash_key