Running with gitlab-runner 15.5.0 (0d4137b8)  on emba-dedicated-docker-runner or_peUvb section_start:1710341247:prepare_executor Preparing the "docker" executor Using Docker executor with image docker:19.03.12 ... Pulling docker image docker:19.03.12 ... Using docker image sha256:81f5749c9058a7284e6acd8e126f2b882765a17b9ead14422b51cde1a110b85c for docker:19.03.12 with digest docker@sha256:d41efe7ad0df5a709cfd4e627c7e45104f39bbc08b1b40d7fb718c562b3ce135 ... section_end:1710341252:prepare_executor section_start:1710341252:prepare_script Preparing environment Running on runner-orpeuvb-project-1-concurrent-0 via emba-runner.gnu.org... section_end:1710341254:prepare_script section_start:1710341254:get_sources Getting source from Git repository $ git config --global http.proxy $HTTP_PROXY; git config --global https.proxy $HTTPS_PROXY Fetching changes with git depth set to 50... Reinitialized existing Git repository in /builds/emacs/emacs/.git/ Checking out c5945e0f as master... Skipping Git submodules setup section_end:1710341303:get_sources section_start:1710341303:step_script Executing "step_script" stage of the job script Using docker image sha256:81f5749c9058a7284e6acd8e126f2b882765a17b9ead14422b51cde1a110b85c for docker:19.03.12 with digest docker@sha256:d41efe7ad0df5a709cfd4e627c7e45104f39bbc08b1b40d7fb718c562b3ce135 ... $ docker info WARNING: You're not using the default seccomp profile Client: Debug Mode: false Server: Containers: 4 Running: 2 Paused: 0 Stopped: 2 Images: 4 Server Version: 24.0.5 Storage Driver: overlay2 Backing Filesystem: xfs Supports d_type: true Using metacopy: false Native Overlay Diff: true userxattr: false Logging Driver: json-file Cgroup Driver: systemd Plugins: Volume: local Network: bridge host ipvlan macvlan null overlay Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog Swarm: inactive Runtimes: io.containerd.runc.v2 runc Default Runtime: runc Init Binary: docker-init containerd version: runc version: init version: Security Options: apparmor seccomp Profile: builtin cgroupns Kernel Version: 5.15.0-100-generic Operating System: Trisquel GNU/Linux Aramo (11.0) OSType: linux Architecture: x86_64 CPUs: 2 Total Memory: 1.918GiB Name: emba-runner.gnu.org ID: 9cb022b6-69bb-4171-b66e-0000ffc115ea Docker Root Dir: /var/lib/docker Debug Mode: false HTTP Proxy: http://serverproxy0p.fsf.org:8118/ HTTPS Proxy: http://serverproxy0p.fsf.org:8118/ No Proxy: localhost,127.0.0.1,eggs.gnu.org,emba.gnu.org/ Registry: https://index.docker.io/v1/ Labels: Experimental: false Insecure Registries: 127.0.0.0/8 Live Restore Enabled: false WARNING: No kernel memory limit support WARNING: No oom kill disable support $ echo "docker registry is ${CI_REGISTRY}" docker registry is emba.gnu.org:5050 $ docker login -u ${CI_REGISTRY_USER} -p ${CI_REGISTRY_PASSWORD} ${CI_REGISTRY} WARNING! Using --password via the CLI is insecure. Use --password-stdin. WARNING! Your password will be stored unencrypted in /.docker-config-c5945e0f9eaf01e653d5afbce72837a05e3e347a/config.json. Configure a credential helper to remove this warning. See https://docs.docker.com/engine/reference/commandline/login/#credentials-store Login Succeeded $ docker pull ${CI_REGISTRY_IMAGE}:${target}-${BUILD_TAG} emacs-inotify-master: Pulling from emacs/emacs 09e2bc8a597c: Pulling fs layer d2a3927603d8: Pulling fs layer 7ded8d5036c3: Pulling fs layer 05f01485ae56: Pulling fs layer 4f4fb700ef54: Pulling fs layer d5861d05a883: Pulling fs layer f062a66ea5a4: Pulling fs layer 4b30fbe4404c: Pulling fs layer 05f01485ae56: Waiting 4f4fb700ef54: Waiting d5861d05a883: Waiting f062a66ea5a4: Waiting 4b30fbe4404c: Waiting 09e2bc8a597c: Verifying Checksum 09e2bc8a597c: Download complete 7ded8d5036c3: Verifying Checksum 7ded8d5036c3: Download complete 4f4fb700ef54: Verifying Checksum 4f4fb700ef54: Download complete d2a3927603d8: Verifying Checksum d2a3927603d8: Download complete d5861d05a883: Verifying Checksum d5861d05a883: Download complete f062a66ea5a4: Verifying Checksum f062a66ea5a4: Download complete 4b30fbe4404c: Verifying Checksum 4b30fbe4404c: Download complete 05f01485ae56: Verifying Checksum 05f01485ae56: Download complete 09e2bc8a597c: Pull complete d2a3927603d8: Pull complete 7ded8d5036c3: Pull complete 05f01485ae56: Pull complete 4f4fb700ef54: Pull complete d5861d05a883: Pull complete f062a66ea5a4: Pull complete 4b30fbe4404c: Pull complete Digest: sha256:c3efda8992657f2abeeb738caabf6d0ca140876e47dee3d5422d26856cb57a91 Status: Downloaded newer image for emba.gnu.org:5050/emacs/emacs:emacs-inotify-master emba.gnu.org:5050/emacs/emacs:emacs-inotify-master $ export PWD=$(pwd) $ docker run -i -e EMACS_EMBA_CI=${EMACS_EMBA_CI} -e EMACS_TEST_JUNIT_REPORT=${EMACS_TEST_JUNIT_REPORT} -e EMACS_TEST_TIMEOUT=${EMACS_TEST_TIMEOUT} -e EMACS_TEST_VERBOSE=${EMACS_TEST_VERBOSE} --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 -xvc "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}" git fetch /builds/emacs/emacs 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 -k -C test check-lisp-gnus + git fetch /builds/emacs/emacs HEAD From /builds/emacs/emacs * branch HEAD -> FETCH_HEAD + echo checking out these updated files + git diff --name-only FETCH_HEAD checking out these updated files admin/MAINTAINERS doc/lispref/os.texi java/AndroidManifest.xml.in java/org/gnu/emacs/EmacsDesktopNotification.java java/org/gnu/emacs/EmacsService.java lisp/bind-key.el lisp/emacs-lisp/bytecomp.el lisp/emacs-lisp/cl-generic.el lisp/emacs-lisp/cl-macs.el lisp/emacs-lisp/cl-preloaded.el lisp/emacs-lisp/comp.el lisp/emacs-lisp/oclosure.el lisp/erc/erc-desktop-notifications.el lisp/gnus/gnus-notifications.el lisp/gnus/gnus-start.el lisp/gnus/legacy-gnus-agent.el lisp/jsonrpc.el lisp/subr.el src/android.c src/android.h src/androidfns.c src/androidselect.c src/nsterm.m + git diff --name-only FETCH_HEAD + xargs git checkout -f FETCH_HEAD error: pathspec 'lisp/gnus/legacy-gnus-agent.el' did not match any file(s) known to git section_end:1710341527:step_script section_start:1710341527:after_script Running after_script Running after script... $ 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} test-lisp-gnus-inotify-c5945e0f $ find ${test_name} ! \( -name "*.log" -o -name ${EMACS_TEST_JUNIT_REPORT} \) -type f -delete $ find ${test_name} -type d -depth -exec rmdir {} + 2>/dev/null section_end:1710341532:after_script section_start:1710341532:upload_artifacts_on_failure Uploading artifacts for failed job Uploading artifacts... WARNING: test-lisp-gnus-inotify-c5945e0f/: no matching files. Ensure that the artifact path is relative to the working directory ERROR: No files to upload  Uploading artifacts... WARNING: test-lisp-gnus-inotify-c5945e0f/junit-test-report.xml: no matching files. Ensure that the artifact path is relative to the working directory ERROR: No files to upload  section_end:1710341535:upload_artifacts_on_failure section_start:1710341535:cleanup_file_variables Cleaning up project directory and file based variables section_end:1710341538:cleanup_file_variables ERROR: Job failed: exit code 123