Skip to content
StepArgumentsStatus
Start of Pipeline - (12 min in block)
node - (12 min in block)
node block - (11 min in block)
stage - (13 sec in block)Init
stage block (Init) - (13 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (13 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (13 sec in block)
sh - (7.1 sec in self) #!/bin/bash export fileid=11-J4D5Bt_dCuFwnJunTf8WwdF9cd8SYv export filename=glassfish.zip ## WGET ## wget --save-cookies cookies.txt 'https://docs.google.com/uc?export=download&id='$fileid -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1/p' > confirm.txt wget -q --load-cookies cookies.txt -O $filename 'https://docs.google.com/uc?export=download&id='$fileid'&confirm='`cat confirm.txt` rm cookies.txt
sh - (6.2 sec in self) #!/bin/bash export fileid=1gD58FJqVe37MvmqYe0Kw17D6W9RuvbSG export filename=openjdk-8u41-b04-linux-x64-08_jan_2020.tar.gz ## WGET ## wget --save-cookies cookies.txt 'https://docs.google.com/uc?export=download&id='$fileid -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1/p' > confirm.txt wget -q --load-cookies cookies.txt -O $filename 'https://docs.google.com/uc?export=download&id='$fileid'&confirm='`cat confirm.txt` rm cookies.txt
stage - (11 sec in block)Grab GF
stage block (Grab GF) - (11 sec in block)
sh - (11 sec in self)#!/bin/bash -ex cd ${WORKSPACE} unzip -q ${WORKSPACE}/download/glassfish.zip tar -xzf ${WORKSPACE}/download/openjdk-8u41-b04-linux-x64-08_jan_2020.tar.gz
stage - (0.37 sec in block)Grab API
stage block (Grab API) - (0.35 sec in block)
sh - (0.31 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${API_URL} -O ${API_JAR_NAME}
stage - (0.88 sec in block)Grab TCK
stage block (Grab TCK) - (0.86 sec in block)
sh - (0.85 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 sec in block)Grab ANT
stage block (Grab ANT) - (3 sec in block)
sh - (3 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 - (0.36 sec in block)Replace API in GF
stage block (Replace API in GF) - (0.33 sec in block)
sh - (0.32 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
stage - (0.35 sec in block)Configure ts.jte
stage block (Configure ts.jte) - (0.33 sec in block)
sh - (0.31 sec in self)
stage - (16 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 - (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 - (2.1 sec in block)Create summary.txt, API, and run.log artifacts
stage block (Create summary.txt, API, and run.log artifacts) - (2.1 sec in block)
sh - (0.3 sec in self)#!/bin/bash -ex cd ${TS_HOME}/bin cat run.log | sed -e '1,/Completed running/d' > summary.txt PASSED_COUNT=`head -1 summary.txt | tail -1 | sed 's/.*=\s\(.*\)/\1/'` FAILED_COUNT=`head -2 summary.txt | tail -1 | sed 's/.*=\s\(.*\)/\1/'` ERROR_COUNT=`head -3 summary.txt | tail -1 | sed 's/.*=\s\(.*\)/\1/'` echo ERROR_COUNT=${ERROR_COUNT} echo FAILED_COUNT=${FAILED_COUNT} echo PASSED_COUNT=${PASSED_COUNT}
step - (0.64 sec in self)
step - (1 sec in self)
step - (89 ms in self)