Skip to content
StepArgumentsStatus
Start of Pipeline - (1 min 4 sec in block)
node - (1 min 3 sec in block)
node block - (51 sec in block)
stage - (24 sec in block)Download API artifact from the build job
stage block (Download API artifact from the build job) - (23 sec in block)
dir - (22 sec in block)download
dir block - (22 sec in block)
sh - (21 sec in self)
stage - (5.1 sec in block)Grab and unzip Glassfish
stage block (Grab and unzip Glassfish) - (4.5 sec in block)
sh - (3.9 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 - (1.9 sec in block)Replace API in GF
stage block (Replace API in GF) - (1.3 sec in block)
sh - (0.68 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 - (19 sec in block)Archive the GF
stage block (Archive the GF) - (19 sec in block)
sh - (6.8 sec in self)#!/bin/bash -ex cd ${WORKSPACE} zip -r glassfish.zip glassfish5
archiveArtifacts - (11 sec in self)glassfish.zip