Skip to content
Snippets Groups Projects
Commit 63640f5a authored by Alexander V. Tikhonov's avatar Alexander V. Tikhonov Committed by Kirill Yukhin
Browse files

build: added static build subdirectory cleanup

Added the command for 'build' directory cleanup. It purges all
artefacts produced for curl build, including the old configuration
in build/curl.
parent 4f6862d6
No related branches found
No related tags found
No related merge requests found
......@@ -70,9 +70,12 @@ RUN set -x && \
git submodule init && \
git submodule update
# Cleanup for 'build' directory added, because it purges all artefacts
# produced for curl build, including the old configuration in build/curl
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 && \
rm -rf build
RUN pip install -r /tarantool/test-run/requirements.txt
......
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