Skip to content
StepArgumentsStatus
Start of Pipeline - (18 min in block)
node - (18 min in block)
node block - (17 min in block)
stage - (3.8 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.1 sec in self)#!/bin/bash -x pwd mkdir download mkdir -p $TCK_HOME/${TCK_NAME}report/${TCK_NAME} mkdir -p $TCK_HOME/${TCK_NAME}work/${TCK_NAME} ls -altrh
stage - (2.4 sec in block)Grab API + IMPL
stage block (Grab API + IMPL) - (1.7 sec in block)
sh - (1.1 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 - (28 sec in block)Grab Glassfish
stage block (Grab Glassfish) - (27 sec in block)
sh - (27 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.4 sec in block)Grab TCK
stage block (Grab TCK) - (1.7 sec in block)
sh - (1.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 touch ${deliverabledir}-tck/bin/run.log ls -altrh ${deliverabledir}-tck/bin/
stage - (5.1 sec in block)Grab ANT
stage block (Grab ANT) - (4.4 sec in block)
sh - (3.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 - (1.8 sec in block)Replace API + IMPL in GF
stage block (Replace API + IMPL in GF) - (1.2 sec in block)
sh - (0.55 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 - (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 - (46 sec in block)Configure TCK
stage block (Configure TCK) - (45 sec in block)
sh - (44 sec in self)#!/bin/bash -ex export ANT_OPTS="${ANT_OPTS} -Djavax.xml.accessExternalStylesheet=all -Djavax.xml.accessExternalSchema=all -Djavax.xml.accessExternalDTD=file,http" cd $TCK_HOME/glassfish6/glassfish/bin ./asadmin start-database ./asadmin start-domain ./asadmin create-jvm-options -Djavax.xml.accessExternalStylesheet=all || true ./asadmin create-jvm-options -Djavax.xml.accessExternalSchema=all || true ./asadmin create-jvm-options -Djavax.xml.accessExternalDTD=file,http || true ./asadmin stop-domain || true ./asadmin start-domain cd $TS_HOME/bin ant init.javadb
stage - (16 min in block)Run TCK tests
stage block (Run TCK tests) - (16 min in block)
sh - (16 min 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 deploy.all | tee -a ${TS_HOME}/bin/run.log ant run.all | tee -a ${TS_HOME}/bin/run.log
stage - (3.7 sec in block)Create summary.txt, API, and run.log artifacts
stage block (Create summary.txt, API, and run.log artifacts) - (3.5 sec in block)
sh - (0.6 sec in self)
archiveArtifacts - (0.55 sec in self)
archiveArtifacts - (0.64 sec in self)
archiveArtifacts - (0.52 sec in self)
archiveArtifacts - (0.54 sec in self)