Skip to content
StepArgumentsStatus
Start of Pipeline - (10 min in block)
node - (10 min in block)
node block - (9 min 40 sec in block)
stage - (4 sec in block)Init
stage block (Init) - (3.3 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (1.3 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (0.66 sec in block)
sh - (1.3 sec in self)#!/bin/bash -x mkdir download
stage - (5.1 sec in block)Grab Glassfish
stage block (Grab Glassfish) - (4.5 sec in block)
sh - (3.8 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 jar
stage block (Grab staged API jar) - (1.2 sec in block)
sh - (0.56 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${API_URL} -O ${API_JAR_NAME}
stage - (2.1 sec in block)Grab TCK bundle
stage block (Grab TCK bundle) - (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.9 sec in block)Unzip TCK and GF
stage block (Unzip TCK and GF) - (4.3 sec in block)
sh - (3.6 sec in self)#!/bin/bash -ex cd ${WORKSPACE} unzip -q ${WORKSPACE}/download/glassfish.zip unzip -q ${WORKSPACE}/download/${deliverabledir}tck.zip
stage - (5.9 sec in block)Grab and unzip ANT
stage block (Grab and unzip ANT) - (5.2 sec in block)
sh - (4.5 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 - (1.8 sec in block)Replace API in GF
stage block (Replace API in GF) - (1.2 sec in block)
sh - (0.54 sec in self)#!/bin/bash -ex cp -v ${WORKSPACE}/download/${API_JAR_NAME} $javaee_home/glassfish/modules
stage - (1.9 sec in block)Configure ts.jte
stage block (Configure ts.jte) - (1.2 sec in block)
sh - (0.56 sec in self)
stage - (1 min 18 sec in block)Configure TCK
stage block (Configure TCK) - (1 min 17 sec in block)
sh - (1 min 16 sec in self)#!/bin/bash -ex cd ${TS_HOME}/bin ant config.vi cd $TS_HOME/bin ant enable.jaspic
stage - (7 min 49 sec in block)Run TCK tests
stage block (Run TCK tests) - (7 min 48 sec in block)
sh - (7 min 47 sec in self)#!/bin/bash -x 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 cd $TS_HOME/bin ant run.all | tee ${TS_HOME}/bin/run.log
stage - (4 sec in block)Create summary.txt, API, and run.log artifacts
stage block (Create summary.txt, API, and run.log artifacts) - (3.7 sec in block)
sh - (1.3 sec in self)
archiveArtifacts - (0.61 sec in self)
archiveArtifacts - (0.57 sec in self)
archiveArtifacts - (0.53 sec in self)