[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 58128f9: ; Use /usr/bin/find in gitlab-ci.yml
From: |
Michael Albinus |
Subject: |
master 58128f9: ; Use /usr/bin/find in gitlab-ci.yml |
Date: |
Sun, 28 Nov 2021 11:05:41 -0500 (EST) |
branch: master
commit 58128f9b0554f2a7fb1c6638b463f5d4fcd98c7c
Author: Michael Albinus <michael.albinus@gmx.de>
Commit: Michael Albinus <michael.albinus@gmx.de>
; 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 d12876e..4b97f5f 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: []
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master 58128f9: ; Use /usr/bin/find in gitlab-ci.yml,
Michael Albinus <=