From 58128f9b0554f2a7fb1c6638b463f5d4fcd98c7c Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Sun, 28 Nov 2021 17:05:32 +0100 Subject: [PATCH] ; Use /usr/bin/find in gitlab-ci.yml --- test/infra/gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: [] -- 2.39.5