Skip to content
StepArgumentsStatus
Start of Pipeline - (5 min 59 sec in block)
podTemplate - (5 min 57 sec in block)
podTemplate block - (5 min 57 sec in block)
node - (5 min 56 sec in block)migration
node block - (5 min 32 sec in block)
stage - (8.9 sec in block)Declarative: Checkout SCM
stage block (Declarative: Checkout SCM) - (7.5 sec in block)
checkout - (6.9 sec in self)
withEnv - (5 min 22 sec in block)GIT_BRANCH, GIT_COMMIT, GIT_PREVIOUS_COMMIT, GIT_PREVIOUS_SUCCESSFUL_COMMIT, GIT_URL
withEnv block - (5 min 22 sec in block)
withCredentials - (5 min 20 sec in block)
withCredentials block - (5 min 19 sec in block)
withEnv - (5 min 15 sec in block)SCRIPTS, PROJECT_STORAGE_PATH, DOWNLOAD_AREA, RELEASE_TYPE, FORCE_PUBLISH
withEnv block - (5 min 15 sec in block)
timeout - (5 min 13 sec in block)
timeout block - (5 min 13 sec in block)
timestamps - (5 min 11 sec in block)
timestamps block - (5 min 11 sec in block)
stage - (11 sec in block)Prepare
stage block (Prepare) - (9.9 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (3.6 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (2.9 sec in block)
checkout - (2.2 sec in self)
sh - (0.62 sec in self) # Clean up the build result rm -rf build-result/ mkdir -p build-result/downloads/ mkdir -p build-result/javadoc/ mkdir -p build-result/composite/ # call the versioning script when a release is built # this will set the final release number for Maven artifacts according to RELEASE_TYPE # and disable strict version checking by Tycho, so that p2 artifacts keep their qualifier if [ "$RELEASE_TYPE" != "Integration" ]; then pushd $(pwd) && cd git-repo bash ./set_version.sh --release=$RELEASE_TYPE popd fi gpg --batch --import "${KEYRING}" for fpr in $(gpg --list-keys --with-colons | awk -F: '/fpr:/ {print $10}' | sort -u); do echo -e "5 y " | gpg --batch --command-fd 0 --expert --edit-key $fpr trust; done
stage - (4 min 34 sec in block)Build
stage block (Build) - (4 min 33 sec in block)
xvnc - (4 min 27 sec in block)
xvnc block - (4 min 15 sec in block)
withMaven - (4 min 14 sec in block)
withMaven block - (4 min 9 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (4 min 8 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (4 min 8 sec in block)
sh - (4 min 7 sec in self) if [ "${BRANCH_NAME}" == "master" ] || [ "${RELEASE_TYPE}" != "Integration" ] || [ "${FORCE_PUBLISH}" == "true" ]; then GOALS='clean javadoc:aggregate-jar test deploy' else GOALS='clean javadoc:aggregate-jar verify' fi case "$RELEASE_TYPE" in Integration) BUILD_TYPE='N' ;; GA) BUILD_TYPE='R' ;; *) BUILD_TYPE='S' ;; esac mvn -f maven/org.eclipse.emf.mwe2.parent/pom.xml -Dsign.skip=false -DtestFailureIgnore=true -Dmaven.javadoc.failOnError=false -Dtycho.localArtifacts=ignore -DBUILD_TYPE=$BUILD_TYPE $GOALS
stage - (17 sec in block)Publish
stage block (Publish) - (16 sec in block)
sshagent - (8.5 sec in block)
sshagent block - (6.2 sec in block)
sh - (5.5 sec in self)
archiveArtifacts - (1.8 sec in self)build-result/**
stage - (5.9 sec in block)Declarative: Post Actions
stage block (Declarative: Post Actions) - (5.6 sec in block)
junit - (2.6 sec in self)**/surefire-reports/*.xml
script - (0.94 sec in block)
script block - (0.66 sec in block)