Console Output

Branch indexing
Looking up repository moparisthebest/self-ci
Querying the current revision of branch master...
Current revision of branch master is 471e7d761fd995bad12598c8529c49508b8675f1
Obtained .ci/Jenkinsfile from 471e7d761fd995bad12598c8529c49508b8675f1
[Pipeline] Start of Pipeline
[Pipeline] properties
[Pipeline] node
Running on Jenkins in /var/lib/jenkins/workspace/moparisthebest_self-ci_master
[Pipeline] {
[Pipeline] stage
[Pipeline] { (Checkout)
[Pipeline] checkout
The recommended git tool is: NONE
using credential c6ea0d71-5fe1-48ba-ad49-f6dd0c20363a
Cloning the remote Git repository
Cloning with configured refspecs honoured and without tags
Cloning repository https://code.moparisthebest.com/moparisthebest/self-ci.git
 > git init /var/lib/jenkins/workspace/moparisthebest_self-ci_master # timeout=10
Fetching upstream changes from https://code.moparisthebest.com/moparisthebest/self-ci.git
 > git --version # timeout=10
 > git --version # 'git version 2.35.1'
using GIT_ASKPASS to set credentials jenkins @ code.moparisthebest.com
 > git fetch --no-tags --force --progress -- https://code.moparisthebest.com/moparisthebest/self-ci.git +refs/heads/master:refs/remotes/origin/master # timeout=10
 > git config remote.origin.url https://code.moparisthebest.com/moparisthebest/self-ci.git # timeout=10
 > git config --add remote.origin.fetch +refs/heads/master:refs/remotes/origin/master # timeout=10
Avoid second fetch
Checking out Revision 471e7d761fd995bad12598c8529c49508b8675f1 (master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 471e7d761fd995bad12598c8529c49508b8675f1 # timeout=10
Commit message: "Point Dockerfile to new archlinux image"
 > git rev-list --no-walk 471e7d761fd995bad12598c8529c49508b8675f1 # timeout=10
[Gitea] Notifying branch build status: PENDING Build started...
[Gitea] Notified
[Pipeline] echo
My branch is: master
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Build self-ci-base)
[Pipeline] sh
+ set -ex
+ image_tag=master
+ '[' master == master ']'
+ image_tag=latest
+ docker pull docker.io/library/archlinux:latest
latest: Pulling from library/archlinux
Digest: sha256:df3968bf4cc3b56c870fc3687d9c217ebc7a9b47ab66a66961217317ef372622
Status: Image is up to date for archlinux:latest
docker.io/library/archlinux:latest
+ docker build -t moparisthebest/self-ci-base:latest .
Sending build context to Docker daemon  266.8kB

Step 1/9 : FROM docker.io/library/archlinux:latest
 ---> 7b17a3e650d6
Step 2/9 : ENV PACMAN_MIRROR https://burtrum.org/archlinux
 ---> Using cache
 ---> fc540bf8f714
Step 3/9 : ENV TZ=America/New_York
 ---> Using cache
 ---> 1de1e06a6132
Step 4/9 : RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone &&     mkdir /build &&     pacman-key --init &&     curl --pinnedpubkey 'sha256//eEHQC9au2QRAP1FnvcYEsmvXT7511EXQ2gw8ppBfseM=' https://burtrum.org/aur/aur.sh | bash &&     echo -e "Server = $PACMAN_MIRROR/\$repo/os/\$arch" > /etc/pacman.d/mirrorlist &&     echo "TZ=$TZ" > /etc/environment &&     pacman -Syu --noconfirm --needed sed grep gawk sudo git which jq &&     echo 'ci ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/ci
 ---> Using cache
 ---> 214b2b577e1f
Step 5/9 : COPY ./run.sh ./ci-release-helper.sh /usr/bin/
 ---> Using cache
 ---> bf28dc2662ad
Step 6/9 : VOLUME [ "/build" ]
 ---> Using cache
 ---> c6801d6d3635
Step 7/9 : WORKDIR /build
 ---> Using cache
 ---> f57d3f5321e9
Step 8/9 : ENTRYPOINT ["/usr/bin/run.sh"]
 ---> Using cache
 ---> 07fac0665755
Step 9/9 : CMD ["/usr/bin/bash"]
 ---> Using cache
 ---> 6808e6e7b874
Successfully built 6808e6e7b874
Successfully tagged moparisthebest/self-ci-base:latest
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Build self-ci-java)
[Pipeline] sh
+ set -ex
+ image_tag=master
+ '[' master == master ']'
+ image_tag=latest
+ cd java
+ docker build -t moparisthebest/self-ci-java:latest .
Sending build context to Docker daemon  9.728kB

Step 1/7 : FROM moparisthebest/self-ci-base:latest
 ---> 6808e6e7b874
Step 2/7 : RUN mkdir /m2 /npm && ln -sf /m2/ /root/.m2 && ln -sf /npm/ /root/.npm &&     echo "JAVA_HOME=/usr/lib/jvm/default" > /etc/environment &&     pacman -Syu --noconfirm --needed maven     jdk6     jdk7-openjdk     jdk8-openjdk     jdk11-openjdk     jdk-openjdk &&     archlinux-java set java-14-openjdk &&     curl https://archive.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.tar.gz | bsdtar -xf - -C /opt &&     curl https://download.java.net/openjdk/jdk9/ri/openjdk-9+181_linux-x64_ri.zip | bsdtar -xf - -C /usr/lib/jvm &&     curl https://download.java.net/openjdk/jdk10/ri/openjdk-10+44_linux-x64_bin_ri.tar.gz | bsdtar -xf - -C /usr/lib/jvm &&     curl https://download.java.net/openjdk/jdk12/ri/openjdk-12+32_linux-x64_bin.tar.gz | bsdtar -xf - -C /usr/lib/jvm &&     curl https://download.java.net/openjdk/jdk13/ri/openjdk-13+33_linux-x64_bin.tar.gz | bsdtar -xf - -C /usr/lib/jvm &&     curl https://download.java.net/openjdk/jdk15/ri/openjdk-15+36_linux-x64_bin.tar.gz | bsdtar -xf - -C /usr/lib/jvm &&     curl https://download.java.net/java/early_access/jdk16/23/GPL/openjdk-16-ea+23_linux-x64_bin.tar.gz | bsdtar -xf - -C /usr/lib/jvm &&     mv /usr/lib/jvm/java-se-9-ri/jdk-9 /usr/lib/jvm/ && rm -rf java-se-9-ri && chmod +x /usr/lib/jvm/jdk-9/bin/*
 ---> Running in 81b4de91bffc
:: Synchronizing package databases...
 aur downloading...
 core downloading...
 extra downloading...
 community downloading...
 multilib downloading...
:: Starting full system upgrade...
resolving dependencies...
looking for conflicting packages...
warning: dependency cycle detected:
warning: harfbuzz will be installed before its freetype2 dependency

Packages (53) avahi-0.8+22+gfd482a7-3  desktop-file-utils-0.26-2  freetype2-2.12.1-1  giflib-5.2.1-2  graphite-1:1.3.14-2  harfbuzz-5.2.0-1  hicolor-icon-theme-0.17-2  java-environment-common-3-3  java-runtime-common-3-3  jre-openjdk-18.0.2.1.u0-1  jre-openjdk-headless-18.0.2.1.u0-1  jre11-openjdk-11.0.16.1.u1-2  jre11-openjdk-headless-11.0.16.1.u1-2  jre7-openjdk-7.u261_2.6.22-1  jre7-openjdk-headless-7.u261_2.6.22-1  jre8-openjdk-8.345.u01-1  jre8-openjdk-headless-8.345.u01-1  lcms2-2.13.1-1  libcups-1:2.4.2-3  libdaemon-0.14-5  libice-1.0.10-4  libjpeg-turbo-2.1.4-2  libnet-1:1.1.6-1  libpng-1.6.38-1  libsm-1.2.3-3  libtiff-4.4.0-4  libusb-1.0.26-1  libx11-1.8.1-3  libxau-1.0.10-1  libxcb-1.15-1  libxdmcp-1.1.3-4  libxext-1.3.4-4  libxfixes-6.0.0-1  libxi-1.8-1  libxmu-1.1.3-3  libxrender-0.9.10-5  libxslt-1.1.37-2  libxt-1.2.1-1  libxtst-1.2.4-1  nspr-4.35-1  nss-3.83-1  shared-mime-info-2.0+155+gf4e7cbc-1  xcb-proto-1.15.2-1  xdg-utils-1.1.3+21+g1a58bc2-2  xorg-xprop-1.2.5-1  xorg-xset-1.2.4-3  xorgproto-2022.2-1  jdk-openjdk-18.0.2.1.u0-1  jdk11-openjdk-11.0.16.1.u1-2  jdk6-6u45-7  jdk7-openjdk-7.u261_2.6.22-1  jdk8-openjdk-8.345.u01-1  maven-3.8.6-1

Total Download Size:   388.93 MiB
Total Installed Size:  945.37 MiB

:: Proceed with installation? [Y/n] 
:: Retrieving packages...
 jdk11-openjdk-11.0.16.1.u1-2-x86_64 downloading...
 jdk-openjdk-18.0.2.1.u0-1-x86_64 downloading...
 jdk6-6u45-7-x86_64 downloading...
 jre7-openjdk-headless-7.u261_2.6.22-1-x86_64 downloading...
 jre-openjdk-headless-18.0.2.1.u0-1-x86_64 downloading...
 jre11-openjdk-headless-11.0.16.1.u1-2-x86_64 downloading...
 jre8-openjdk-headless-8.345.u01-1-x86_64 downloading...
 jdk7-openjdk-7.u261_2.6.22-1-x86_64 downloading...
 jdk8-openjdk-8.345.u01-1-x86_64 downloading...
 maven-3.8.6-1-any downloading...
 libx11-1.8.1-3-x86_64 downloading...
 nss-3.83-1-x86_64 downloading...
 harfbuzz-5.2.0-1-x86_64 downloading...
 libxcb-1.15-1-x86_64 downloading...
 libtiff-4.4.0-4-x86_64 downloading...
 shared-mime-info-2.0+155+gf4e7cbc-1-x86_64 downloading...
 libxt-1.2.1-1-x86_64 downloading...
 freetype2-2.12.1-1-x86_64 downloading...
 libjpeg-turbo-2.1.4-2-x86_64 downloading...
 avahi-0.8+22+gfd482a7-3-x86_64 downloading...
 libcups-1:2.4.2-3-x86_64 downloading...
 libpng-1.6.38-1-x86_64 downloading...
 xorgproto-2022.2-1-any downloading...
 graphite-1:1.3.14-2-x86_64 downloading...
 lcms2-2.13.1-1-x86_64 downloading...
 libxslt-1.1.37-2-x86_64 downloading...
 nspr-4.35-1-x86_64 downloading...
 jre11-openjdk-11.0.16.1.u1-2-x86_64 downloading...
 jre-openjdk-18.0.2.1.u0-1-x86_64 downloading...
 jre8-openjdk-8.345.u01-1-x86_64 downloading...
 jre7-openjdk-7.u261_2.6.22-1-x86_64 downloading...
 libxi-1.8-1-x86_64 downloading...
 xcb-proto-1.15.2-1-any downloading...
 libxext-1.3.4-4-x86_64 downloading...
 libnet-1:1.1.6-1-x86_64 downloading...
 libice-1.0.10-4-x86_64 downloading...
 libxmu-1.1.3-3-x86_64 downloading...
 giflib-5.2.1-2-x86_64 downloading...
 libusb-1.0.26-1-x86_64 downloading...
 xdg-utils-1.1.3+21+g1a58bc2-2-any downloading...
 libsm-1.2.3-3-x86_64 downloading...
 desktop-file-utils-0.26-2-x86_64 downloading...
 libxtst-1.2.4-1-x86_64 downloading...
 libxdmcp-1.1.3-4-x86_64 downloading...
 xorg-xprop-1.2.5-1-x86_64 downloading...
 libxrender-0.9.10-5-x86_64 downloading...
 libdaemon-0.14-5-x86_64 downloading...
 xorg-xset-1.2.4-3-x86_64 downloading...
 libxfixes-6.0.0-1-x86_64 downloading...
 libxau-1.0.10-1-x86_64 downloading...
 hicolor-icon-theme-0.17-2-any downloading...
 java-runtime-common-3-3-any downloading...
 java-environment-common-3-3-any downloading...
checking keyring...
checking package integrity...
loading package files...
checking for file conflicts...
checking available disk space...
:: Processing package changes...
installing java-environment-common...
installing java-runtime-common...
For the complete set of Java binaries to be available in your PATH,
you need to re-login or source /etc/profile.d/jre.sh
Please note that this package does not support forcing JAVA_HOME as former package java-common did
installing nspr...
installing nss...
installing jre8-openjdk-headless...
Optional dependencies for jre8-openjdk-headless
    java-rhino: for some JavaScript support
installing xcb-proto...
installing libxdmcp...
installing libxau...
installing libxcb...
installing xorgproto...
installing libx11...
installing libxext...
installing libice...
installing libsm...
installing libxt...
installing libxmu...
installing xorg-xset...
installing xorg-xprop...
installing xdg-utils...
Optional dependencies for xdg-utils
    kde-cli-tools: for KDE Plasma5 support in xdg-open
    exo: for Xfce support in xdg-open
    pcmanfm: for LXDE support in xdg-open
    perl-file-mimeinfo: for generic support in xdg-open
    perl-net-dbus: Perl extension to dbus used in xdg-screensaver
    perl-x11-protocol: Perl X11 protocol used in xdg-screensaver
installing hicolor-icon-theme...
installing jre8-openjdk...
when you use a non-reparenting window manager,
set _JAVA_AWT_WM_NONREPARENTING=1 in /etc/profile.d/jre.sh
Optional dependencies for jre8-openjdk
    icedtea-web: web browser plugin + Java Web Start
    alsa-lib: for basic sound support
    gtk2: for the Gtk+ look and feel - desktop usage
    java8-openjfx: for JavaFX GUI components support
installing jdk8-openjdk...
installing libpng...
installing libjpeg-turbo...
Optional dependencies for libjpeg-turbo
    java-runtime>11: for TurboJPEG Java wrapper [pending]
installing libtiff...
Optional dependencies for libtiff
    freeglut: for using tiffgt
installing lcms2...
installing libnet...
installing graphite...
installing harfbuzz...
Optional dependencies for harfbuzz
    cairo: hb-view program
    chafa: hb-view program
installing freetype2...
installing jre11-openjdk-headless...
Default Java environment is already set to 'java-8-openjdk'
See 'archlinux-java help' to change it
Optional dependencies for jre11-openjdk-headless
    java-rhino: for some JavaScript support
installing giflib...
installing jre11-openjdk...
Default Java environment is already set to 'java-8-openjdk'
See 'archlinux-java help' to change it
when you use a non-reparenting window manager,
set _JAVA_AWT_WM_NONREPARENTING=1 in /etc/profile.d/jre.sh
Optional dependencies for jre11-openjdk
    alsa-lib: for basic sound support
    gtk2: for the Gtk+ 2 look and feel - desktop usage
    gtk3: for the Gtk+ 3 look and feel - desktop usage
installing jdk11-openjdk...
Default Java environment is already set to 'java-8-openjdk'
See 'archlinux-java help' to change it
installing jre-openjdk-headless...
Default Java environment is already set to 'java-8-openjdk'
See 'archlinux-java help' to change it
Optional dependencies for jre-openjdk-headless
    java-rhino: for some JavaScript support
installing jre-openjdk...
Default Java environment is already set to 'java-8-openjdk'
See 'archlinux-java help' to change it
when you use a non-reparenting window manager,
set _JAVA_AWT_WM_NONREPARENTING=1 in /etc/profile.d/jre.sh
Optional dependencies for jre-openjdk
    alsa-lib: for basic sound support
    gtk2: for the Gtk+ 2 look and feel - desktop usage
    gtk3: for the Gtk+ 3 look and feel - desktop usage
installing jdk-openjdk...
Default Java environment is already set to 'java-8-openjdk'
See 'archlinux-java help' to change it
installing maven...
installing desktop-file-utils...
installing libxrender...
installing libxslt...
Optional dependencies for libxslt
    python: Python bindings
installing libxi...
installing libxfixes...
installing libxtst...
installing shared-mime-info...
installing jdk6...
tput: No value for $TERM and no -T specified
tput: No value for $TERM and no -T specified
tput: No value for $TERM and no -T specified
tput: No value for $TERM and no -T specified
:: archlinux-java: Default Java environment already set to 'java-8-openjdk'.
                   To use JDK ('java-6-jdk'), run:
                     # archlinux-java set java-6-jdk
                   For status, use:
                     $ archlinux-java status
Optional dependencies for jdk6
    alsa-lib: for basic sound support
    derby: for Oracle Apache Derby Java database (AUR)
    eclipse: "Oracle Java Mission Control" plugins for Eclipse
    gtk2: for Gtk+ look and feel (desktop)
    ttf-font: fonts
    visualvm: for lightweight profiling capabilities
installing libdaemon...
installing avahi...
Optional dependencies for avahi
    gtk3: avahi-discover, avahi-discover-standalone, bshell, bssh, bvnc
    qt5-base: qt5 bindings
    libevent: libevent bindings [installed]
    nss-mdns: NSS support for mDNS
    python-twisted: avahi-bookmarks
    python-gobject: avahi-bookmarks, avahi-discover
    python-dbus: avahi-bookmarks, avahi-discover
installing libusb...
installing libcups...
installing jre7-openjdk-headless...
Default Java environment is already set to 'java-8-openjdk'
See 'archlinux-java help' to change it
Optional dependencies for jre7-openjdk-headless
    fontconfig: needed for Java Mauve support - libmawt.so
    java-rhino: for some JavaScript support
installing jre7-openjdk...
Default Java environment is already set to 'java-8-openjdk'
See 'archlinux-java help' to change it
when you use a non-reparenting window manager,
set _JAVA_AWT_WM_NONREPARENTING=1 in /etc/profile.d/jre.sh
Optional dependencies for jre7-openjdk
    icedtea-web: web browser plugin + Java Web Start
    alsa-lib: for basic sound support
    giflib: for gif format support [installed]
    libpulse: for advanced sound support
    gtk2: for the Gtk+ look and feel - desktop usage
    libxtst: linked in xawt/libmawt.so - desktop usage [installed]
installing jdk7-openjdk...
Default Java environment is already set to 'java-8-openjdk'
See 'archlinux-java help' to change it
:: Running post-transaction hooks...
(1/6) Creating system user accounts...
Creating group 'avahi' with GID 973.
Creating user 'avahi' (Avahi mDNS/DNS-SD daemon) with UID 973 and GID 973.
(2/6) Reloading system manager configuration...
  Skipped: Current root is not booted.
(3/6) Arming ConditionNeedsUpdate...
(4/6) Updating the MIME type database...
(5/6) Reloading system bus configuration...
  Skipped: Current root is not booted.
(6/6) Updating the desktop file MIME type cache...
'/usr/lib/jvm/java-14-openjdk' is not a valid Java environment path
The command '/bin/sh -c mkdir /m2 /npm && ln -sf /m2/ /root/.m2 && ln -sf /npm/ /root/.npm &&     echo "JAVA_HOME=/usr/lib/jvm/default" > /etc/environment &&     pacman -Syu --noconfirm --needed maven     jdk6     jdk7-openjdk     jdk8-openjdk     jdk11-openjdk     jdk-openjdk &&     archlinux-java set java-14-openjdk &&     curl https://archive.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.tar.gz | bsdtar -xf - -C /opt &&     curl https://download.java.net/openjdk/jdk9/ri/openjdk-9+181_linux-x64_ri.zip | bsdtar -xf - -C /usr/lib/jvm &&     curl https://download.java.net/openjdk/jdk10/ri/openjdk-10+44_linux-x64_bin_ri.tar.gz | bsdtar -xf - -C /usr/lib/jvm &&     curl https://download.java.net/openjdk/jdk12/ri/openjdk-12+32_linux-x64_bin.tar.gz | bsdtar -xf - -C /usr/lib/jvm &&     curl https://download.java.net/openjdk/jdk13/ri/openjdk-13+33_linux-x64_bin.tar.gz | bsdtar -xf - -C /usr/lib/jvm &&     curl https://download.java.net/openjdk/jdk15/ri/openjdk-15+36_linux-x64_bin.tar.gz | bsdtar -xf - -C /usr/lib/jvm &&     curl https://download.java.net/java/early_access/jdk16/23/GPL/openjdk-16-ea+23_linux-x64_bin.tar.gz | bsdtar -xf - -C /usr/lib/jvm &&     mv /usr/lib/jvm/java-se-9-ri/jdk-9 /usr/lib/jvm/ && rm -rf java-se-9-ri && chmod +x /usr/lib/jvm/jdk-9/bin/*' returned a non-zero code: 1
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Email)
[Pipeline] step
Sending e-mails to: admin.jenkins@moparisthebest.com
[Pipeline] }
[Pipeline] // stage
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
[Gitea] Notifying branch build status: FAILURE There was a failure building this commit
[Gitea] Notified
Finished: FAILURE