Skip to content
StepArgumentsStatus
Start of Pipeline - (2 hr 25 min in block)
node - (2 hr 25 min in block)
node block - (2 hr 25 min in block)
stage - (3.7 sec in block)Init
stage block (Init) - (3 sec in block)
dir - (1.3 sec in block)download
dir block - (0.67 sec in block)
sh - (0.96 sec in self)#!/bin/bash -x ls /opt/tools/java mkdir download
stage - (4.2 sec in block)Grab GF
stage block (Grab GF) - (3.5 sec in block)
sh - (2.8 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 IMPL
stage block (Grab IMPL) - (1.7 sec in block)
sh - (0.82 sec in self)#!/bin/bash -ex # cd ${WORKSPACE}/download # wget -q ${API_URL} -O ${API_JAR_NAME} cd ${WORKSPACE}/download if [ $IMPL_SOURCE == 'STAGE' ]; then wget -q ${IMPL_URL} -O ${IMPL_JAR_NAME} fi if [ $IMPL_SOURCE == 'BRANCH' ]; then mkdir mojarra-build cd mojarra-build git clone https://github.com/eclipse-ee4j/mojarra.git . git checkout $IMPL_BRANCH rm -rf test sed -i '/test/d' ./pom.xml cat pom.xml mvn clean install -DskipTests -Dmaven.test.skip=true find ./impl/target/ -name 'jakarta.faces*-SNAPSHOT.jar' -exec bash -c 'mv $0 jakarta-faces.jar' {} \; cp jakarta-faces.jar ${WORKSPACE}/download/${IMPL_JAR_NAME} fi ls -altrh ${WORKSPACE}/download/
stage - (2.8 sec in block)Grab TCK
stage block (Grab TCK) - (2.1 sec in block)
sh - (1.3 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.1 sec in block)Grab ANT
stage block (Grab ANT) - (2.4 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.3 sec in block)Replace IMPL in GF
stage block (Replace IMPL in GF) - (1.2 sec in block)
sh - (0.57 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.3 sec in block)Configure ts.jte
stage block (Configure ts.jte) - (1.5 sec in block)
sh - (0.56 sec in self)
stage - (6.1 sec in block)Restart GF
stage block (Restart GF) - (5.4 sec in block)
sh - (4.7 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 - (37 sec in block)Configure TCK
stage block (Configure TCK) - (36 sec in block)
sh - (35 sec in self)#!/bin/bash -ex echo cat log cat $javaee_home/glassfish/domains/domain1/logs/server.log cd $TS_HOME/src/com/sun/ts/tests/jsf ant -Dutil.dir=$TS_HOME deploy.all || true cat $javaee_home/glassfish/domains/domain1/logs/server.log OUT=$? if [ $OUT -ne 0 ];then cat $javaee_home/glassfish/domains/domain1/logs/server.log exit $OUT; fi
stage - (2 hr 23 min in block)Run TCK tests
stage block (Run TCK tests) - (2 hr 23 min in block)
sh - (2 hr 23 min in self)
stage - (4.6 sec in block)Create summary.txt, API, and run.log artifacts
stage block (Create summary.txt, API, and run.log artifacts) - (4.3 sec in block)
sh - (0.93 sec in self)
archiveArtifacts - (0.74 sec in self)
archiveArtifacts - (1.4 sec in self)
archiveArtifacts - (0.56 sec in self)