Skip to content
StepArgumentsStatus
Start of Pipeline - (59 sec in block)
node - (59 sec in block)
node block - (59 sec in block)
stage - (10 sec in block)Grab GF and ts.jte artifacts
stage block (Grab GF and ts.jte artifacts) - (10 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (10 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (10 sec in block)
sh - (9.8 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
copyArtifacts - (41 ms in self)TCK_ts_jte
stage - (0.33 sec in block)Grab TCK bundle
stage block (Grab TCK bundle) - (0.3 sec in block)
sh - (0.29 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${TCK_BUNDLE_URL} -O ${deliverabledir}tck.zip
stage - (2.5 sec in block)Unzip TCK and GF
stage block (Unzip TCK and GF) - (2.4 sec in block)
sh - (2.4 sec in self)#!/bin/bash -ex cd ${WORKSPACE} tar -xzf ${WORKSPACE}/download/openjdk-8u41-b04-linux-x64-08_jan_2020.tar.gz #unzip -q ${WORKSPACE}/download/glassfish.zip unzip -q ${WORKSPACE}/download/${deliverabledir}tck.zip
stage - (46 sec in block)Build GF
stage block (Build GF) - (46 sec in block)
sh - (46 sec in self)#!/bin/bash -ex git clone https://github.com/eclipse-ee4j/glassfish.git glassfish_build cd glassfish_build git checkout 5.1.0-BRANCH mvn -V -B -C -U clean install -Dmaven.test.failure.ignore=true -Pstaging cp appserver/distributions/glassfish/target/*.zip ${WORKSPACE}/download