See 
<https://builds.apache.org/job/HTrace-Master/282/display/redirect?page=changes>

Changes:

[nisala12] HTRACE-346 NOTICE.txt Zipkin Paragraph removed

[lewis.mcgibbney] Add retirement notice

------------------------------------------
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on H18 (Hadoop xenial) in workspace 
<https://builds.apache.org/job/HTrace-Master/ws/>
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/incubator-htrace.git # timeout=10
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/incubator-htrace.git
 > git --version # timeout=10
 > git fetch --tags --progress 
 > https://git-wip-us.apache.org/repos/asf/incubator-htrace.git 
 > +refs/heads/*:refs/remotes/origin/*
 > git rev-parse refs/remotes/origin/master^{commit} # timeout=10
 > git rev-parse refs/remotes/origin/origin/master^{commit} # timeout=10
Checking out Revision 04ee0d686ccec0c780e922bd7531efdc77061bb1 
(refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 04ee0d686ccec0c780e922bd7531efdc77061bb1
Commit message: "Add retirement notice"
 > git rev-list --no-walk a3b503d7da4bd151bba2978ce7720ba38aa4d332 # timeout=10
[EnvInject] - Executing scripts and injecting environment variables after the 
SCM step.
[EnvInject] - Injecting as environment variables the properties content 
export=MAVEN_OPTS="-Xmx6100M -XX:-UsePerfData"

[EnvInject] - Variables injected successfully.
[HTrace-Master] $ /bin/bash -xe /tmp/jenkins6569362955637252767.sh
+ which java
/home/jenkins/tools/java/latest1.7/bin/java
+ java -version
java version "1.7.0_80"
Java(TM) SE Runtime Environment (build 1.7.0_80-b15)
Java HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed mode)
+ ulimit -a
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 386415
max locked memory       (kbytes, -l) 64
max memory size         (kbytes, -m) unlimited
open files                      (-n) 60000
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 8192
cpu time               (seconds, -t) unlimited
max user processes              (-u) 10240
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited
+ docker build -t htrace .
Sending build context to Docker daemon  7.112MB
Step 1/19 : FROM ubuntu:trusty
 ---> a35e70164dfb
Step 2/19 : MAINTAINER Apache HTrace <dev@htrace.incubator.apache.org>
 ---> Using cache
 ---> f146f9e729a9
Step 3/19 : ENV HOME /root
 ---> Using cache
 ---> d27318235648
Step 4/19 : ENV DEBIAN_FRONTEND noninteractive
 ---> Using cache
 ---> be2090164977
Step 5/19 : RUN apt-get update -y && apt-get dist-upgrade -y
 ---> Using cache
 ---> 3ad61b60c885
Step 6/19 : RUN apt-get install -y build-essential curl gcc git libleveldb-dev 
libsnappy-dev
 ---> Using cache
 ---> 0b0c3cd432aa
Step 7/19 : RUN curl -sSL 
http://nixos.org/releases/patchelf/patchelf-0.8/patchelf-0.8.tar.bz2 | tar -C 
/tmp -xj &&     cd /tmp/patchelf-*/ &&     ./configure --prefix=/usr &&     
make install
 ---> Using cache
 ---> 6d5d00c370f6
Step 8/19 : RUN apt-get install -y software-properties-common &&     echo 
oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | 
debconf-set-selections &&     add-apt-repository -y ppa:webupd8team/java &&     
apt-get update &&     apt-get install -y oracle-java8-installer 
oracle-java8-set-default
 ---> Using cache
 ---> 1b52fd7ce3fa
Step 9/19 : RUN curl -sSL 
http://archive.apache.org/dist/maven/maven-3/3.0.4/binaries/apache-maven-3.0.4-bin.tar.gz
 | tar -C /usr/share -xz &&     mv /usr/share/apache-maven-3.0.4 
/usr/share/maven &&     ln -s /usr/share/maven/bin/mvn /usr/bin/mvn
 ---> Using cache
 ---> 484bcfb07194
Step 10/19 : RUN curl -sSL 
http://archive.apache.org/dist/ant/binaries/apache-ant-1.9.6-bin.tar.gz | tar 
-C /usr/share -xz &&     mv /usr/share/apache-ant-1.9.6 /usr/share/ant &&     
ln -s /usr/share/ant/bin/ant /usr/bin/ant
 ---> Using cache
 ---> c67df5f57595
Step 11/19 : ENV JAVA_HOME /usr/lib/jvm/java-8-oracle
 ---> Using cache
 ---> 4c6a8901e317
Step 12/19 : ENV MAVEN_HOME /usr/share/maven
 ---> Using cache
 ---> 6fb84726d560
Step 13/19 : ENV ANT_HOME /ust/share/ant
 ---> Using cache
 ---> 1c2bde08d345
Step 14/19 : RUN curl -sSL 
https://storage.googleapis.com/golang/go1.5.1.linux-amd64.tar.gz | tar -C 
/usr/lib/ -xz &&     mkdir -p /usr/share/go
 ---> Using cache
 ---> b3463caacbd2
Step 15/19 : ENV GOROOT /usr/lib/go
 ---> Using cache
 ---> 8461fd8cad3d
Step 16/19 : ENV GOPATH /usr/share/go
 ---> Using cache
 ---> 763655a3060f
Step 17/19 : ENV PATH ${GOROOT}/bin:${GOPATH}/bin:$PATH
 ---> Using cache
 ---> d4559af2d468
Step 18/19 : RUN apt-get clean &&     rm -rf /var/cache/apt/* &&     rm -rf 
/var/lib/apt/lists/* &&     rm -rf /tmp/* &&     rm -rf /var/tmp/*
 ---> Using cache
 ---> 83b4b1cbd197
Step 19/19 : WORKDIR $HOME
 ---> Using cache
 ---> c26f77245e79
Successfully built c26f77245e79
Successfully tagged htrace:latest
++ pwd
+ docker run -v <https://builds.apache.org/job/HTrace-Master/ws/>:/htrace 
--entrypoint /bin/bash htrace -c 'cd /htrace && mvn clean && mvn install site'
[INFO] Scanning for projects...
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom
4/16 KB   8/16 KB   12/16 KB   16/16 KB              Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 KB 
at 90.1 KB/sec)
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]   
[ERROR]   The project org.apache.htrace:htrace-kudu:4.2.0-incubating-SNAPSHOT 
(/htrace/htrace-kudu/pom.xml) has 1 error
[ERROR]     Non-resolvable parent POM: Could not find artifact 
org.apache.htrace:htrace:pom:4.2.0-incubating-SNAPSHOT and 
'parent.relativePath' points at wrong local POM @ line 18, column 11 -> [Help 2]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please 
read the following articles:
[ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[ERROR] [Help 2] 
http://cwiki.apache.org/confluence/display/MAVEN/UnresolvableModelException
Build step 'Execute shell' marked build as failure
[FINDBUGS] Skipping publisher since build result is FAILURE
Performing Post build task...
Match found for :.* : True
Logical operation result is TRUE
Running script  : 
[HTrace-Master] $ /bin/bash -xe /tmp/jenkins3920772460684668666.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Archiving artifacts
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
[JIRA] Updating issue HTRACE-346
Not sending mail to unregistered user lewis.mcgibb...@gmail.com
Not sending mail to unregistered user nisal...@gmail.com

Reply via email to