Skip to content
StepArgumentsStatus
Start of Pipeline - (39 sec in block)
node - (38 sec in block)
node block - (24 sec in block)
stage - (2.7 sec in block)Download API artifact from the build job
stage block (Download API artifact from the build job) - (2.3 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (1.9 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (1.7 sec in block)
com.cloudbees.opscenter.artifacts.RemoteArtifactCopyStep - (0.56 sec in self)
sh - (0.73 sec in self)find . -mindepth 2 -type f -print -exec mv {} . \;
stage - (12 sec in block)Grab and unzip Glassfish
stage block (Grab and unzip Glassfish) - (12 sec in block)
sh - (12 sec in self)#!/bin/bash -ex cd download wget -q ${GF_URL} -O glassfish.zip #unzip unzip -q glassfish.zip -d ${WORKSPACE} cd ${WORKSPACE}/glassfish5/glassfish/modules
stage - (0.42 sec in block)Replace API in GF
stage block (Replace API in GF) - (0.37 sec in block)
sh - (0.35 sec in self)#!/bin/bash -ex cd glassfish5/glassfish/modules #strip the api name of RC, SNAPSHOT, and version. for jarfile in ${WORKSPACE}/download/*.jar; do echo $(basename $jarfile) | sed -e 's/-RC[0-9][0-9]*//' | sed -e 's/-SNAPSHOT//' | sed -e 's/\.[0-9][0-9]*//' | sed -e 's/\.[0-9][0-9]*//' | sed -e 's/-[0-9][0-9]*//' | while IFS= read -r gfnamejar ; do if [ -f $gfnamejar ]; then rm -v $gfnamejar; cp -v $jarfile $gfnamejar; fi; done; done
stage - (7.8 sec in block)Archive the GF
stage block (Archive the GF) - (7.8 sec in block)
sh - (4.1 sec in self)#!/bin/bash -ex cd ${WORKSPACE} zip -r glassfish.zip glassfish5
archiveArtifacts - (3.6 sec in self)glassfish.zip