Skip to content
StepArgumentsStatus
Start of Pipeline - (47 min in block)
node - (47 min in block)
node block - (47 min in block)
stage - (3.9 sec in block)Init
stage block (Init) - (3.1 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (1.3 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (0.68 sec in block)
sh - (1 sec in self)#!/bin/bash -x mkdir download mkdir jmstckreport || true mkdir jmstckreport/jmstck || true
stage - (4.5 sec in block)Grab GF
stage block (Grab GF) - (3.8 sec in block)
sh - (3 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${GF_URL} -O glassfish.zip
stage - (1.9 sec in block)Grab staged API and IMPL
stage block (Grab staged API and IMPL) - (1.3 sec in block)
sh - (0.57 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download #wget -q ${API_URL} -O ${API_JAR_NAME} #wget -q ${IMPL_URL} -O ${IMPL_ZIP_NAME}
stage - (2.1 sec in block)Grab TCK
stage block (Grab TCK) - (1.4 sec in block)
sh - (0.8 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${TCK_BUNDLE_URL} -O ${deliverabledir}tck.zip
stage - (4 sec in block)Unzip GF and TCK
stage block (Unzip GF and TCK) - (3.4 sec in block)
sh - (2.7 sec in self)#!/bin/bash -ex cd ${WORKSPACE} unzip -q ${WORKSPACE}/download/glassfish.zip unzip ${WORKSPACE}/download/${deliverabledir}tck.zip
stage - (4.7 sec in block)Grab and unzip ANT
stage block (Grab and unzip ANT) - (4 sec in block)
sh - (3.4 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q http://mirror.koddos.net/apache/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz -O ant.tar.gz tar xfz ant.tar.gz mkdir -p ${ANT_HOME} && cp -a ${WORKSPACE}/download/apache-ant-${ANT_VERSION}/. ${ANT_HOME}
stage - (2.1 sec in block)Replace API and IMPL in GF
stage block (Replace API and IMPL in GF) - (1.2 sec in block)
sh - (0.57 sec in self)#!/bin/bash -ex #rm $javaee_home/glassfish/modules/${API_JAR_NAME} #cp -v ${WORKSPACE}/download/${API_JAR_NAME} $javaee_home/glassfish/modules # Replace OpenMQ. We need to do some more work here since it's not just a jar #rm -rf $javaee_home/mq #cp -v ${WORKSPACE}/download/${IMPL_ZIP_NAME} $javaee_home/ #cd $javaee_home #unzip -o ${IMPL_ZIP_NAME} #rm ${IMPL_ZIP_NAME} #chmod +x ./mq/bin/* # jmsra originates from the OpenMQ distro rar, which needs to be present as an "application" in GF #rm -rf $javaee_home/glassfish/lib/install/applications/jmsra/* #unzip $javaee_home/mq/lib/imqjmsra.rar -d $javaee_home/glassfish/lib/install/applications/jmsra/ #ls -altrh #ls -altrh ./mq #ls -altrh ./mq/bin #ls -altrh ./glassfish/lib/install/applications/jmsra/
stage - (1.9 sec in block)Configure ts.jte
stage block (Configure ts.jte) - (1.2 sec in block)
sh - (0.57 sec in self)#!/bin/bash -ex cd ${TS_HOME}/bin/ cp ts.jte.jdk11 ts.jte sed -i "s#^jms.home=.*#jms.home=$TCK_HOME/glassfish6/mq#g" ts.jte sed -i 's#^jms.classes=.*#jms.classes=${ri.jars}#g' ts.jte sed -i "s#^report.dir=.*#report.dir=$TCK_HOME/jmstckreport/jmstck#g" ts.jte sed -i "s#^work.dir=.*#work.dir=$TCK_HOME/jmstckwork/jmstck#g" ts.jte
stage - (18 sec in block)Configure TCK
stage block (Configure TCK) - (17 sec in block)
sh - (17 sec in self)#!/bin/bash -ex cd ${TS_HOME}/bin ant config.vi
stage - (7.4 sec in block)Restart GF
stage block (Restart GF) - (6.7 sec in block)
sh - (5.7 sec in self)#!/bin/bash -ex cd $javaee_home/bin ./asadmin stop-domain if [ $retval != 0 ]; then echo "Pending process to be killed:" ps -eaf | grep "com.sun.enterprise.admin.cli.AdminMain" | grep -v "grep" | grep -v "nohup" for i in `ps -eaf | grep "com.sun.enterprise.admin.cli.AdminMain" | grep -v "grep" | grep -v "nohup" | tr -s " " | cut -d" " -f2` do echo "[killJava.sh] kill -9 $i" kill $i done fi ./asadmin start-domain
stage - (46 min in block)Run TCK tests
stage block (Run TCK tests) - (46 min in block)
sh - (46 min in self)#!/bin/bash -x cd $TS_HOME/src/com/sun/ts/tests ant runclient | tee -a ${TS_HOME}/bin/run.log
stage - (3.4 sec in block)Create summary.txt, API, and run.log artifacts
stage block (Create summary.txt, API, and run.log artifacts) - (3.2 sec in block)
sh - (0.59 sec in self)
archiveArtifacts - (0.83 sec in self)
archiveArtifacts - (0.55 sec in self)
archiveArtifacts - (0.55 sec in self)