Skip to content
StepArgumentsStatus
Start of Pipeline - (3 min 49 sec in block)
node - (3 min 48 sec in block)
node block - (3 min 24 sec in block)
stage - (3 min 2 sec in block)Download API artifact from the build job
stage block (Download API artifact from the build job) - (3 min 1 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (3 min 0 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (3 min 0 sec in block)
sh - (2 min 58 sec in self)
stage - (4.9 sec in block)Grab and unzip Glassfish
stage block (Grab and unzip Glassfish) - (4.2 sec in block)
sh - (3.6 sec in self)#!/bin/bash -ex cd download wget -q ${GF_URL} -O glassfish.zip #unzip unzip -q glassfish.zip -d ${WORKSPACE} cd ${WORKSPACE}/glassfish6/glassfish/modules
stage - (2.5 sec in block)Replace API in GF
stage block (Replace API in GF) - (1.8 sec in block)
sh - (0.54 sec in self)#!/bin/bash -ex cd glassfish6/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 - (13 sec in block)Archive the GF
stage block (Archive the GF) - (13 sec in block)
sh - (4.8 sec in self)#!/bin/bash -ex cd ${WORKSPACE} zip -r glassfish.zip glassfish6
archiveArtifacts - (7.7 sec in self)glassfish.zip