From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng2.m.smailru.net (smtpng2.m.smailru.net [94.100.179.3]) (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 EF45F46970E for ; Wed, 18 Dec 2019 18:37:04 +0300 (MSK) Date: Wed, 18 Dec 2019 18:34:54 +0300 From: Igor Munkin Message-ID: <20191218153454.GU1214@tarantool.org> References: <444449da1110ff892195a9d5c4176f344f3b5260.1575976611.git.avtikhon@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <444449da1110ff892195a9d5c4176f344f3b5260.1575976611.git.avtikhon@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v2 4/5] static build: added build subdirectory cleanup List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Alexander V. Tikhonov" Cc: tarantool-patches@dev.tarantool.org Sasha, Thanks for the patch! I left two comments below, please consider them. On 10.12.19, Alexander V. Tikhonov wrote: > Added 'build' directory removement to avoid of old configuration > at build/curl which is used for curl building. The commit message looks a bit complex. I rewrote it a little, as the following: | Added the command for 'build' directory cleanup. It purges all | artefacts produced for curl build, including the old configuration in | build/curl. Feel free to adjust the commit message in your own way. > --- > Dockerfile.staticbuild | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/Dockerfile.staticbuild b/Dockerfile.staticbuild > index 66342fa4e..0424179a2 100644 > --- a/Dockerfile.staticbuild > +++ b/Dockerfile.staticbuild > @@ -72,7 +72,8 @@ RUN set -x && \ > > RUN set -x && \ > find . -name 'CMakeFiles' -type d -exec rm -rf {} + && \ > - find . -name 'CMakeCache.txt' -type f -delete > + find . -name 'CMakeCache.txt' -type f -delete && \ Please drop a comment about the build directory source, since it's not created (or even mentioned) within Docker file. > + rm -rf build > > RUN pip install -r /tarantool/test-run/requirements.txt > > -- > 2.17.1 > -- Best regards, IM