Skip to content
StepArgumentsStatus
Start of Pipeline - (45 min in block)
node - (45 min in block)
node block - (45 min in block)
echo - (33 ms in self)GF_BUILD_JOB=PayaraTyrusZipIntegration
echo - (1 ms in self)TS_JTE_BUILD_JOB=Jakarta8_TS_JTE
echo - (0.47 sec in self)TCK_BUNDLE_URL=https://download.eclipse.org/ee4j/jakartaee-tck/jakartaee8-eftl/promoted/eclipse-websocket-tck-1.1.1.zip
tool - (0.9 sec in self)apache-maven-latest
tool - (0.83 sec in self)openjdk-jdk11-latest
stage - (6.4 sec in block)Grab GF and ts.jte artifacts
stage block (Grab GF and ts.jte artifacts) - (5.7 sec in block)
dir - (4.3 sec in block)download
dir block - (4 sec in block)
copyArtifacts - (2.8 sec in self)PayaraTyrusZipIntegration
copyArtifacts - (0.51 sec in self)Jakarta8_TS_JTE
stage - (2.1 sec in block)Grab TCK bundle
stage block (Grab TCK bundle) - (1.5 sec in block)
sh - (0.91 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${TCK_BUNDLE_URL} -O ${deliverabledir}tck.zip
stage - (8.4 sec in block)Unzip TCK and GF
stage block (Unzip TCK and GF) - (6.5 sec in block)
sh - (5.9 sec in self)#!/bin/bash -ex cd ${WORKSPACE} unzip ${WORKSPACE}/download/payara.zip unzip -q ${WORKSPACE}/download/${deliverabledir}tck.zip cd ${WORKSPACE}/${GF_FOLDER_NAME}/glassfish/modules jar xf tyrus-core.jar META-INF/MANIFEST.MF cat META-INF/MANIFEST.MF | grep Bundle-Version
stage - (7.5 sec in block)SET WebSocket TCK TOP DIR
stage block (SET WebSocket TCK TOP DIR) - (6.8 sec in block)
sh - (3 sec in self)ls -d */ | cut -f1 -d/ | grep tck
sh - (2.5 sec in self)echo websocket-tck
sh - (0.54 sec in self)if [ \'websocket-tck\' != \'websocket-tck\' ]; then mv -v websocket-tck websocket-tck; fi
stage - (4.2 sec in block)Grab and unzip ANT
stage block (Grab and unzip ANT) - (3.6 sec in block)
sh - (1.9 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 ts.jte
stage block (Replace ts.jte) - (1.1 sec in block)
sh - (0.54 sec in self)#!/bin/bash -ex yes | cp -rfv ${WORKSPACE}/download/ts.jte ${TS_HOME}/bin/ts.jte
stage - (29 sec in block)Configure TCK
stage block (Configure TCK) - (24 sec in block)
sh - (23 sec in self)#!/bin/bash -ex cd ${TS_HOME}/bin ant config.vi
stage - (42 sec in block)Deploy TCK tests
stage block (Deploy TCK tests) - (35 sec in block)
script - (34 sec in block)
script block - (34 sec in block)
sh - (33 sec in self)#!/bin/bash -ex cd ${TS_HOME}/bin ant deploy.all
stage - (43 min in block)Run TCK tests
stage block (Run TCK tests) - (43 min in block)
sh - (43 min in self)#!/bin/bash -ex cd ${TS_HOME}/bin ant run.all | tee run.log
stage - (4.8 sec in block)Create summary.txt, API, and run.log artifacts
stage block (Create summary.txt, API, and run.log artifacts) - (4.1 sec in block)
sh - (0.9 sec in self)
archiveArtifacts - (0.75 sec in self)
archiveArtifacts - (0.76 sec in self)
archiveArtifacts - (0.51 sec in self)
archiveArtifacts - (0.51 sec in self)
stage - (2.8 sec in block)push results to gh-pages
stage block (push results to gh-pages) - (2.6 sec in block)
sshagent - (1.5 sec in block)
sshagent block - (1.1 sec in block)
sh - (0.52 sec in self) GIT_API_HOME='git@github.com:eclipse-ee4j/websocket-api.git' SITE_FOLDER='gh-pages' # Setup jms-bot account information #git config --global user.email "websocket-bot@eclipse.org" #git config --global user.name "Eclipse Websocket Bot" #cd /home/jenkins/agent/workspace/Jakarta8_TCK_run #git clone --depth 1 --branch gh-pages --single-branch ${GIT_API_HOME} ${SITE_FOLDER} #mkdir -p ${SITE_FOLDER}/tck #cp -a summary.txt ${SITE_FOLDER}/tck/summary.txt #cd ${SITE_FOLDER} #git add tck #git commit -a -s -m 'TCK: summary.txt' #git push origin gh-pages