Skip to content
StepArgumentsStatus
Start of Pipeline - (1 hr 2 min in block)
node - (1 hr 2 min in block)
node block - (1 hr 2 min in block)
stage - (5.3 sec in block)Init
stage block (Init) - (4.6 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (1.8 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (1 sec in block)
sh - (1.9 sec in self)#!/bin/bash -x mkdir download mkdir jmstckreport || true mkdir jmstckreport/jmstck || true
stage - (28 sec in block)Grab GF
stage block (Grab GF) - (19 sec in block)
sh - (19 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${GF_URL} -O glassfish.zip
stage - (18 sec in block)Grab staged API and IMPL
stage block (Grab staged API and IMPL) - (13 sec in block)
sh - (12 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.3 sec in block)Grab TCK
stage block (Grab TCK) - (1.6 sec in block)
sh - (0.87 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${TCK_BUNDLE_URL} -O ${deliverabledir}tck.zip
stage - (3.9 sec in block)Unzip GF and TCK
stage block (Unzip GF and TCK) - (3.2 sec in block)
sh - (2.5 sec in self)#!/bin/bash -ex cd ${WORKSPACE} unzip -q ${WORKSPACE}/download/glassfish.zip unzip ${WORKSPACE}/download/${deliverabledir}tck.zip
stage - (9.2 sec in block)Grab and unzip ANT
stage block (Grab and unzip ANT) - (8.5 sec in block)
sh - (7.8 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.5 sec in block)Replace API and IMPL in GF
stage block (Replace API and IMPL in GF) - (1.8 sec in block)
sh - (1.1 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 - (16 sec in block)Configure ts.jte
stage block (Configure ts.jte) - (3.9 sec in block)
sh - (3.2 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 - (54 sec in block)Configure TCK
stage block (Configure TCK) - (54 sec in block)
sh - (48 sec in self)#!/bin/bash -ex cd ${TS_HOME}/bin ant config.vi
stage - (26 sec in block)Restart GF
stage block (Restart GF) - (16 sec in block)
sh - (16 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 - (59 min in block)Run TCK tests
stage block (Run TCK tests) - (59 min in block)
sh - (59 min in self)#!/bin/bash -x cd $TS_HOME/src/com/sun/ts/tests ant runclient | tee -a ${TS_HOME}/bin/run.log
stage - (4.4 sec in block)Create summary.txt, API, and run.log artifacts
stage block (Create summary.txt, API, and run.log artifacts) - (4.1 sec in block)
sh - (1.2 sec in self)
archiveArtifacts - (1 sec in self)
archiveArtifacts - (0.7 sec in self)
archiveArtifacts - (0.53 sec in self)