From: Paul Bauer Date: Mon, 17 Aug 2020 08:39:17 +0000 (+0000) Subject: Reduce artifact size X-Git-Url: http://biod.pnpi.spb.ru/gitweb/?a=commitdiff_plain;h=48389eda24196f4fba7df61462621ef5b0c59f9b;p=alexxy%2Fgromacs.git Reduce artifact size Remove object files from build archives to reduce size. Fixes #3630 Change-Id: Id841b91b8ab31d79579685c4aebaa67dec464962 --- diff --git a/admin/gitlab-ci/gromacs.gitlab-ci.yml b/admin/gitlab-ci/gromacs.gitlab-ci.yml index 7b5f85d7f9..28a7392c8a 100644 --- a/admin/gitlab-ci/gromacs.gitlab-ci.yml +++ b/admin/gitlab-ci/gromacs.gitlab-ci.yml @@ -376,6 +376,7 @@ gromacs:clang-8-cuda-10.1:release:configure: - grep "cannot be built" buildLogFile.log testBuildLogFile.log | tee -a buildErrors.log || true - cmake --build . --target install 2>&1 | tee installBuildLogFile.log - if [ -s buildErrors.log ] ; then echo "Found compiler warning during build"; cat buildErrors.log; exit 1; fi + - for file in `find . -mindepth 1 -name "*.o" ! -type l` ; do echo $file ; rm $file ; done 2>&1 > remove-build-objects.log - cd .. artifacts: when: always