Skip to content
StepArgumentsStatus
Start of Pipeline - (46 sec in block)
node - (46 sec in block)
node block - (20 sec in block)
stage - (1 sec in block)Grab JSON-B API
stage block (Grab JSON-B API) - (1 sec in block)
sh - (0.98 sec in self)#!/bin/bash -ex mkdir download cd download wget -q ${JSONB_API_URL}/${JSONB_API_VERSION}/jakarta.json.bind-api-${JSONB_API_VERSION}.jar -O jakarta.json.bind-api.jar
stage - (0.58 sec in block)Grab Yasson
stage block (Grab Yasson) - (0.56 sec in block)
sh - (0.54 sec in self)#!/bin/bash -ex cd download if [[ ${YASSON_VERSION} == *-SNAPSHOT ]]; then wget -q ${MAVEN_REPO_URL}/${YASSON_VERSION}/maven-metadata.xml -O maven-metadata.xml VERSION=`cat maven-metadata.xml | tail -6 | head -1 | sed -e 's/<value>//g' | sed -e 's/<\/value>//g' | sed -e 's/^[[:space:]]*//'` wget -q ${MAVEN_REPO_URL}/${YASSON_VERSION}/yasson-${VERSION}.jar -O yasson.jar else wget -q ${MAVEN_REPO_URL}/${YASSON_VERSION}/yasson-${YASSON_VERSION}.jar -O yasson.jar fi
stage - (5.8 sec in block)Grab and unzip Glassfish
stage block (Grab and unzip Glassfish) - (5.8 sec in block)
sh - (5.8 sec in self)#!/bin/bash -ex cd download wget -q ${GF_URL} -O glassfish.zip #unzip unzip -q glassfish.zip -d ${WORKSPACE}
stage - (0.33 sec in block)Replace Yasson in GF
stage block (Replace Yasson in GF) - (0.31 sec in block)
sh - (0.3 sec in self)#!/bin/bash -ex cd ${WORKSPACE}/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 - (12 sec in block)Archive the GF
stage block (Archive the GF) - (12 sec in block)
sh - (3.6 sec in self)#!/bin/bash -ex cd ${WORKSPACE} zip -r glassfish.zip glassfish5
archiveArtifacts - (9.1 sec in self)glassfish.zip
archiveArtifacts - (51 ms in self)glassfish5/glassfish/modules/yasson.jar
archiveArtifacts - (24 ms in self)glassfish5/glassfish/modules/jakarta.json.bind-api.jar