From: "Alexander V. Tikhonov" <avtikhon@tarantool.org> To: Oleg Piskunov <o.piskunov@tarantool.org>, Sergey Bronnikov <sergeyb@tarantool.org> Cc: tarantool-patches@dev.tarantool.org Subject: [Tarantool-patches] [PATCH v1 1/2] build: disable cache for static build Dockerfile Date: Tue, 7 Apr 2020 17:03:25 +0300 [thread overview] Message-ID: <1207821e4fc18312a9916d81a55a8eacd75a67b3.1586263386.git.avtikhon@tarantool.org> (raw) In-Reply-To: <cover.1586263386.git.avtikhon@tarantool.org> In-Reply-To: <cover.1586263386.git.avtikhon@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
next prev parent reply other threads:[~2020-04-07 14:03 UTC|newest] Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-04-07 14:03 [Tarantool-patches] [PATCH v1 0/2] set to gitlab-ci static build with Dockerfile Alexander V. Tikhonov 2020-04-07 14:03 ` Alexander V. Tikhonov [this message] 2020-04-14 8:28 ` [Tarantool-patches] [PATCH v1 1/2] build: disable cache for static build Dockerfile Sergey Bronnikov 2020-04-15 8:42 ` Oleg Piskunov 2020-04-07 14:03 ` [Tarantool-patches] [PATCH v1 2/2] gitlab-ci: set static docker build release testing Alexander V. Tikhonov 2020-04-14 8:28 ` Sergey Bronnikov 2020-04-15 8:44 ` Oleg Piskunov 2020-04-15 12:48 ` [Tarantool-patches] [PATCH v1 0/2] set to gitlab-ci static build with Dockerfile Kirill Yukhin
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=1207821e4fc18312a9916d81a55a8eacd75a67b3.1586263386.git.avtikhon@tarantool.org \ --to=avtikhon@tarantool.org \ --cc=o.piskunov@tarantool.org \ --cc=sergeyb@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v1 1/2] build: disable cache for static build Dockerfile' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox