From: Michael Albinus Date: Sun, 28 Nov 2021 16:05:32 +0000 (+0100) Subject: ; Use /usr/bin/find in gitlab-ci.yml X-Git-Tag: emacs-29.0.90~3649^2~12 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=58128f9b0554f2a7fb1c6638b463f5d4fcd98c7c;p=emacs.git ; Use /usr/bin/find in gitlab-ci.yml --- diff --git a/test/infra/gitlab-ci.yml b/test/infra/gitlab-ci.yml index d12876e7727..4b97f5f0a84 100644 --- a/test/infra/gitlab-ci.yml +++ b/test/infra/gitlab-ci.yml @@ -93,8 +93,8 @@ default: # Prepare test artifacts. - test -n "$(docker ps -aq -f name=${test_name})" && docker cp ${test_name}:checkout/test ${test_name} - test -n "$(docker ps -aq -f name=${test_name})" && docker rm ${test_name} - - find ${test_name} ! -name "*.log" -type f -delete - - find ${test_name} -empty -type d -delete + - /usr/bin/find ${test_name} ! -name "*.log" -type f -delete + - /usr/bin/find ${test_name} -empty -type d -delete .build-template: needs: []