Console Output

Started by user Travis Burtrum
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 ab03f2bbcf01
:: 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...
error: failed retrieving file 'jre7-openjdk-headless-7.u261_2.6.22-1-x86_64.pkg.tar.zst.sig' from burtrum.org : The requested URL returned error: 404
warning: failed to retrieve some files
error: failed to commit transaction (failed to retrieve some files)
Errors occurred, no packages were upgraded.
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