Skip to content
StepArgumentsStatus
Start of Pipeline - (27 min in block)
node - (27 min in block)
node block - (27 min in block)
echo - (31 ms in self)GF_BUILD_JOB=GF6TyrusZipIntegration
echo - (1 ms in self)TS_JTE_BUILD_JOB=Jakarta9_TS_JTE
echo - (22 ms in self)TCK_BUNDLE_URL=https://download.eclipse.org/ee4j/jakartaee-tck/jakartaee9-eftl/promoted/jakarta-websocket-tck-2.0.0.zip
tool - (0.91 sec in self)apache-maven-latest
tool - (0.54 sec in self)openjdk-jdk11-latest
stage - (5.5 sec in block)Grab GF and ts.jte artifacts
stage block (Grab GF and ts.jte artifacts) - (4.8 sec in block)
dir - (3.8 sec in block)download
dir block - (3.6 sec in block)
copyArtifacts - (2.3 sec in self)GF6TyrusZipIntegration
copyArtifacts - (0.52 sec in self)Jakarta9_TS_JTE
stage - (2 sec in block)Grab TCK bundle
stage block (Grab TCK bundle) - (1.4 sec in block)
sh - (0.81 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${TCK_BUNDLE_URL} -O ${deliverabledir}tck.zip
stage - (3.3 sec in block)Unzip TCK and GF
stage block (Unzip TCK and GF) - (2.7 sec in block)
sh - (2 sec in self)#!/bin/bash -ex cd ${WORKSPACE} unzip ${WORKSPACE}/download/glassfish.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 - (2.9 sec in block)SET WebSocket TCK TOP DIR
stage block (SET WebSocket TCK TOP DIR) - (2.2 sec in block)
sh - (0.56 sec in self)ls -d */ | cut -f1 -d/ | grep tck
sh - (0.53 sec in self)echo websocket-tck
sh - (0.55 sec in self)if [ \'websocket-tck\' != \'websocket-tck\' ]; then mv -v websocket-tck websocket-tck; fi
stage - (3.4 sec in block)Grab and unzip ANT
stage block (Grab and unzip ANT) - (2.8 sec in block)
sh - (2.1 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 - (3 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 - (12 sec in block)Configure TCK
stage block (Configure TCK) - (11 sec in block)
sh - (11 sec in self)#!/bin/bash -ex cd ${TS_HOME}/bin ant config.vi
stage - (20 sec in block)Deploy TCK tests
stage block (Deploy TCK tests) - (19 sec in block)
script - (18 sec in block)
script block - (18 sec in block)
sh - (17 sec in self)#!/bin/bash -ex cd ${TS_HOME}/bin ant deploy.all
stage - (26 min in block)Run TCK tests
stage block (Run TCK tests) - (26 min in block)
sh - (26 min in self)#!/bin/bash -ex cd ${TS_HOME}/bin ant run.all | tee run.log
stage - (4.5 sec in block)Create summary.txt, API, and run.log artifacts
stage block (Create summary.txt, API, and run.log artifacts) - (3.9 sec in block)
sh - (0.89 sec in self)
archiveArtifacts - (0.62 sec in self)
archiveArtifacts - (0.75 sec in self)
archiveArtifacts - (0.49 sec in self)
archiveArtifacts - (0.5 sec in self)
stage - (2.7 sec in block)push results to gh-pages
stage block (push results to gh-pages) - (2.5 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/Jakarta9_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