Skip to content
StepArgumentsStatus
Start of Pipeline - (1 min 35 sec in block)
node - (1 min 35 sec in block)
node block - (54 sec in block)
stage - (12 sec in block)Grab GF and ts.jte artifacts
stage block (Grab GF and ts.jte artifacts) - (12 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (12 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (12 sec in block)
sh - (12 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 - (74 ms in self)TCK_ts_jte
stage - (0.35 sec in block)Grab TCK bundle
stage block (Grab TCK bundle) - (0.33 sec in block)
sh - (0.31 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${TCK_BUNDLE_URL} -O ${deliverabledir}tck.zip
stage - (4.7 sec in block)Unzip TCK and GF
stage block (Unzip TCK and GF) - (4.7 sec in block)
sh - (4.5 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 - (36 sec in block)Build GF
stage block (Build GF) - (36 sec in block)
sh - (36 sec in self)#!/bin/bash -ex git clone https://github.com/eclipse-ee4j/glassfish.git glassfish_build cd glassfish_build mvn -V -B -C -U clean install -Dmaven.test.failure.ignore=true cp appserver/distributions/glassfish/target/*.zip ${WORKSPACE}/download