Skip to content
StepArgumentsStatus
Start of Pipeline - (1 min 28 sec in block)
node - (1 min 27 sec in block)
node block - (1 min 7 sec in block)
stage - (33 sec in block)Download API artifact from the build job
stage block (Download API artifact from the build job) - (32 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (31 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (31 sec in block)
sh - (30 sec in self)
stage - (6.5 sec in block)Grab and unzip Glassfish
stage block (Grab and unzip Glassfish) - (3.2 sec in block)
sh - (2.5 sec in self)#!/bin/bash -ex cd download wget -q ${GF_URL} -O glassfish.zip #unzip unzip -q glassfish.zip -d ${WORKSPACE} cd ${WORKSPACE}/glassfish7/glassfish/modules
stage - (6.7 sec in block)Replace API in GF
stage block (Replace API in GF) - (5.5 sec in block)
sh - (2 sec in self)#!/bin/bash -ex cd glassfish7/glassfish/modules echo 'EclipseLink version: ' $(java -cp org.eclipse.persistence.core.jar org.eclipse.persistence.Version) #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 - (19 sec in block)Archive the GF
stage block (Archive the GF) - (19 sec in block)
sh - (4.1 sec in self)#!/bin/bash -ex cd ${WORKSPACE} zip -r glassfish.zip glassfish7
archiveArtifacts - (10 sec in self)glassfish.zip