From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp63.i.mail.ru (smtp63.i.mail.ru [217.69.128.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id BFA984696C3 for ; Tue, 7 Apr 2020 17:03:29 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Tue, 7 Apr 2020 17:03:25 +0300 Message-Id: <1207821e4fc18312a9916d81a55a8eacd75a67b3.1586263386.git.avtikhon@tarantool.org> In-Reply-To: References: In-Reply-To: References: Subject: [Tarantool-patches] [PATCH v1 1/2] build: disable cache for static build Dockerfile List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Oleg Piskunov , Sergey Bronnikov Cc: tarantool-patches@dev.tarantool.org Found that static build based on Dockerfile used external link and missed that it was removed, like it was in #4830. To avoid of the same issues the cache for building the Dockerfile was disabled with '--no-cache' option at docker build command. Follow up #4830 --- .travis.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.mk b/.travis.mk index f709a18b6..54a4d5d91 100644 --- a/.travis.mk +++ b/.travis.mk @@ -143,7 +143,7 @@ test_static_build: deps_debian_static CMAKE_EXTRA_PARAMS=-DBUILD_STATIC=ON make -f .travis.mk test_debian_no_deps test_static_docker_build: - docker build --network=host --build-arg RUN_TESTS=ON -f Dockerfile.staticbuild . + docker build --no-cache --network=host --build-arg RUN_TESTS=ON -f Dockerfile.staticbuild . ####### # OSX # -- 2.17.1