diff options
| author | Michael Albinus | 2021-11-29 21:36:51 +0100 |
|---|---|---|
| committer | Michael Albinus | 2021-11-29 21:36:51 +0100 |
| commit | 708ffac5ea1cc8f233a4ff698bc29c2a4ef08fc0 (patch) | |
| tree | 512faba019d83fe3bf10f00366455a35f4694fdf /test | |
| parent | 030a5c570487e2809a1ae902f43d1fecf381030c (diff) | |
| download | emacs-708ffac5ea1cc8f233a4ff698bc29c2a4ef08fc0.tar.gz emacs-708ffac5ea1cc8f233a4ff698bc29c2a4ef08fc0.zip | |
* test/infra/gitlab-ci.yml (.job-template): Modify find scripts.
Diffstat (limited to 'test')
| -rw-r--r-- | test/infra/gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/infra/gitlab-ci.yml b/test/infra/gitlab-ci.yml index 4b97f5f0a84..b0ea6813b30 100644 --- a/test/infra/gitlab-ci.yml +++ b/test/infra/gitlab-ci.yml | |||
| @@ -93,8 +93,8 @@ default: | |||
| 93 | # Prepare test artifacts. | 93 | # Prepare test artifacts. |
| 94 | - test -n "$(docker ps -aq -f name=${test_name})" && docker cp ${test_name}:checkout/test ${test_name} | 94 | - test -n "$(docker ps -aq -f name=${test_name})" && docker cp ${test_name}:checkout/test ${test_name} |
| 95 | - test -n "$(docker ps -aq -f name=${test_name})" && docker rm ${test_name} | 95 | - test -n "$(docker ps -aq -f name=${test_name})" && docker rm ${test_name} |
| 96 | - /usr/bin/find ${test_name} ! -name "*.log" -type f -delete | 96 | - find ${test_name} ! -name "*.log" -type f -delete |
| 97 | - /usr/bin/find ${test_name} -empty -type d -delete | 97 | - find ${test_name} -type d -depth -exec rmdir {} + 2>/dev/null |
| 98 | 98 | ||
| 99 | .build-template: | 99 | .build-template: |
| 100 | needs: [] | 100 | needs: [] |