summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2024-04-23 13:24:09 +0200
committerMichael Albinus <michael.albinus@gmx.de>2024-04-23 13:24:09 +0200
commit4a27b31c462d1cb015e28ddec8e0c43a3af0dc34 (patch)
tree76a3f0bbe7b72a264d76ea94ad2099d37f7c6645 /test
parentcd56e85c08307915941d5ae03a02569a52a2889c (diff)
downloademacs-4a27b31c462d1cb015e28ddec8e0c43a3af0dc34.tar.gz
Some EMBA integration fixes
* test/infra/Dockerfile.emba (emacs-native-comp-speed2): Fix typo. * test/infra/gitlab-ci.yml (.job-template): Add configure.log to artifacts.
Diffstat (limited to 'test')
-rw-r--r--test/infra/Dockerfile.emba2
-rw-r--r--test/infra/gitlab-ci.yml1
2 files changed, 2 insertions, 1 deletions
diff --git a/test/infra/Dockerfile.emba b/test/infra/Dockerfile.emba
index 9091d60e8c8..088df86ad70 100644
--- a/test/infra/Dockerfile.emba
+++ b/test/infra/Dockerfile.emba
@@ -208,4 +208,4 @@ COPY . /checkout
WORKDIR /checkout
RUN ./autogen.sh autoconf
RUN ./configure --with-native-compilation
-RUN make -j `nproc` bootstrap`
+RUN make -j `nproc` bootstrap
diff --git a/test/infra/gitlab-ci.yml b/test/infra/gitlab-ci.yml
index e6840d064b5..49e2118761d 100644
--- a/test/infra/gitlab-ci.yml
+++ b/test/infra/gitlab-ci.yml
@@ -93,6 +93,7 @@ default:
# - test -n "$(docker ps -aq -f name=${test_name})" && ( docker export ${test_name} | tar -tvf - )
# 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 cp ${test_name}:checkout/configure.log ${test_name}
- test -n "$(docker ps -aq -f name=${test_name})" && docker rm ${test_name}
- find ${test_name} ! \( -name "*.log" -o -name ${EMACS_TEST_JUNIT_REPORT} \) -type f -delete
# BusyBox find does not know -empty.