Skip to content
StepArgumentsStatus
Start of Pipeline - (1 hr 20 min in block)
node - (1 hr 20 min in block)
node block - (20 sec in block)
stage - (11 sec in block)Grab GF and ts.jte artifacts
stage block (Grab GF and ts.jte artifacts) - (11 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 - (6.1 sec in self) #!/bin/bash export fileid=1_E6Z7h1FoR18fUUhoXRszQcq9EX2PDZo export filename=glassfish.zip ## 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
sh - (4.6 sec in self) #!/bin/bash export fileid=102WZCO0kW6yLnZ3LKg4Sje0wXjaN-SuX 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 - (69 ms in self)TCK_ts_jte
stage - (0.39 sec in block)Grab TCK bundle
stage block (Grab TCK bundle) - (0.36 sec in block)
sh - (0.33 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/download wget -q ${TCK_BUNDLE_URL} -O ${deliverabledir}tck.zip
stage - (8 sec in block)Unzip TCK and GF
stage block (Unzip TCK and GF) - (7.9 sec in block)
sh - (7.9 sec in self)
stage - (0.36 sec in block)Grab and unzip ANT
stage block (Grab and unzip ANT) - (0.34 sec in block)
sh - (0.32 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}