Skip to content
StepArgumentsStatus
Start of Pipeline - (10 min in block)
node - (10 min in block)
node block - (10 min in block)
stage - (4 sec in block)Init
stage block (Init) - (3.2 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (1.4 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (0.75 sec in block)
sh - (1 sec in self)#!/bin/bash -x mkdir download
stage - (4 sec in block)Grab GF
stage block (Grab GF) - (3.2 sec in block)
sh - (2.5 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${GF_URL} -O glassfish.zip cd ${WORKSPACE} unzip -q ${WORKSPACE}/download/glassfish.zip
stage - (2.3 sec in block)Grab API + IMPL
stage block (Grab API + IMPL) - (1.6 sec in block)
sh - (0.84 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${API_URL} -O ${API_JAR_NAME} wget -q ${IMPL_URL} -O ${IMPL_JAR_NAME}
stage - (2.4 sec in block)Grab TCK
stage block (Grab TCK) - (1.6 sec in block)
sh - (0.88 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${TCK_BUNDLE_URL} -O ${deliverabledir}tck.zip cd ${WORKSPACE} unzip ${WORKSPACE}/download/${deliverabledir}tck.zip
stage - (3.3 sec in block)Grab ANT
stage block (Grab ANT) - (2.5 sec in block)
sh - (1.7 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 + IMPL in GF
stage block (Replace API + IMPL in GF) - (1.3 sec in block)
sh - (0.62 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 rm $javaee_home/glassfish/modules/${IMPL_JAR_NAME} cp -v ${WORKSPACE}/download/${IMPL_JAR_NAME} $javaee_home/glassfish/modules
stage - (2.1 sec in block)Configure ts.jte
stage block (Configure ts.jte) - (1.3 sec in block)
sh - (0.62 sec in self)#!/bin/bash -ex cd ${TS_HOME}/bin/ sed -i "s#^el.classes=.*#el.classes=$TS_HOME/lib/javatest.jar:$TCK_HOME/glassfish7/glassfish/modules/expressly.jar:$TCK_HOME/glassfish7/glassfish/modules/jakarta.el-api.jar#g" ts.jte sed -i "s#^report.dir=.*#report.dir=$TCK_HOME/${TCK_NAME}report/${TCK_NAME}#g" ts.jte sed -i "s#^work.dir=.*#work.dir=$TCK_HOME/${TCK_NAME}work/${TCK_NAME}#g" ts.jte
stage - (9.1 sec in block)Restart GF
stage block (Restart GF) - (8.3 sec in block)
sh - (7.6 sec in self)#!/bin/bash -x cd $javaee_home/bin ./asadmin stop-domain retval=$? if [ $retval -ne 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 retval=$? if [ $retval -ne 0 ]; then cat $javaee_home/glassfish/domains/domain1/logs/server.log fi
stage - (10 min in block)Run TCK tests
stage block (Run TCK tests) - (10 min in block)
sh - (10 min in self)#!/bin/bash -x cd $TS_HOME/bin ant -Dkeywords=all run.all | tee -a ${TS_HOME}/bin/run.log
stage - (3.9 sec in block)Create summary.txt, API, and run.log artifacts
stage block (Create summary.txt, API, and run.log artifacts) - (3.6 sec in block)
sh - (1.1 sec in self)
archiveArtifacts - (0.58 sec in self)
archiveArtifacts - (0.58 sec in self)
archiveArtifacts - (0.57 sec in self)