Skip to content
StepArgumentsStatus
Start of Pipeline - (12 min in block)
node - (12 min in block)
node block - (11 min in block)
stage - (5 sec in block)Init
stage block (Init) - (4.3 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (1.4 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (0.71 sec in block)
sh - (2.1 sec in self)#!/bin/bash -x mkdir download
stage - (7.3 sec in block)Grab GF
stage block (Grab GF) - (6.6 sec in block)
sh - (5.9 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.89 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 - (3.5 sec in block)Grab TCK
stage block (Grab TCK) - (2.8 sec in block)
sh - (2.1 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 - (4.6 sec in block)Grab ANT
stage block (Grab ANT) - (3.9 sec in block)
sh - (3.1 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 sec in block)Replace API + IMPL in GF
stage block (Replace API + IMPL in GF) - (1.3 sec in block)
sh - (0.61 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 - (6.8 sec in block)Configure ts.jte
stage block (Configure ts.jte) - (6.1 sec in block)
sh - (5.3 sec in self)#!/bin/bash -ex cd ${TS_HOME}/bin/ cp ts.jte.jdk11 ts.jte sed -i "s#^el.classes=.*#el.classes=$TS_HOME/lib/javatest.jar:$TCK_HOME/glassfish6/glassfish/modules/jakarta.el.jar:$TCK_HOME/glassfish6/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 sed -i 's#sigTestClasspath=.*#sigTestClasspath=\$\{el.classes\}\$\{pathsep\}\$\{JAVA_HOME\}/lib/rt.jar#g' ts.jte
stage - (15 sec in block)Restart GF
stage block (Restart GF) - (15 sec in block)
sh - (14 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 - (5.7 sec in block)Create summary.txt, API, and run.log artifacts
stage block (Create summary.txt, API, and run.log artifacts) - (5.4 sec in block)
sh - (2.4 sec in self)
archiveArtifacts - (1 sec in self)
archiveArtifacts - (0.64 sec in self)
archiveArtifacts - (0.59 sec in self)