1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-24 19:03:29 +00:00

; Adapt recent change in test/infra/gitlab-ci.yml

This commit is contained in:
Michael Albinus 2021-03-27 20:14:22 +01:00
parent 547960488d
commit c52cf64adb

View File

@ -104,7 +104,10 @@ default:
- 'export PWD=$(pwd)'
- 'docker run -i -e EMACS_EMBA_CI=${EMACS_EMBA_CI} --volumes-from $(docker ps -q -f "label=com.gitlab.gitlab-runner.job.id=${CI_JOB_ID}"):ro --name ${test_name} ${CI_REGISTRY_IMAGE}:${target}-${BUILD_TAG} /bin/bash -c "git fetch ${PWD} HEAD && echo checking out these updated files && git diff --name-only FETCH_HEAD && ( git diff --name-only FETCH_HEAD | xargs git checkout -f FETCH_HEAD ) && make -j4 && make ${make_params}"'
after_script:
- 'docker rm ${test_name}'
- docker ps -a
- printenv
- [ ${CI_JOB_STAGE} == fast ] && ( mkdir test-${test_name}; docker cp ${test_name}:test test-${test_name} ) || true
- docker rm ${test_name}
.build-template:
rules:
@ -136,10 +139,6 @@ default:
- docker push ${CI_REGISTRY_IMAGE}:${target}-${BUILD_TAG}
.test-template:
script:
- mkdir test-${test_name}
- docker ps -a
- docker cp ${test_name}:test test-${test_name}
artifacts:
name: ${test_name}
public: true