Skip to content
StepArgumentsStatus
Start of Pipeline - (6 min 46 sec in block)
podTemplate - (6 min 43 sec in block)
podTemplate block - (6 min 43 sec in block)
node - (6 min 42 sec in block)migration
node block - (6 min 21 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 - (6 min 11 sec in block)GIT_BRANCH, GIT_COMMIT, GIT_PREVIOUS_COMMIT, GIT_PREVIOUS_SUCCESSFUL_COMMIT, GIT_URL
withEnv block - (6 min 11 sec in block)
withCredentials - (6 min 9 sec in block)
withCredentials block - (6 min 8 sec in block)
withEnv - (6 min 4 sec in block)SCRIPTS, PROJECT_STORAGE_PATH, DOWNLOAD_AREA, RELEASE_TYPE, FORCE_PUBLISH
withEnv block - (6 min 4 sec in block)
timeout - (6 min 2 sec in block)
timeout block - (6 min 2 sec in block)
timestamps - (6 min 0 sec in block)
timestamps block - (6 min 0 sec in block)
stage - (11 sec in block)Prepare
stage block (Prepare) - (9.9 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (3.4 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (2.7 sec in block)
checkout - (2 sec in self)
sh - (0.66 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 - (5 min 24 sec in block)Build
stage block (Build) - (5 min 23 sec in block)
xvnc - (5 min 17 sec in block)
xvnc block - (5 min 3 sec in block)
withMaven - (5 min 2 sec in block)
withMaven block - (4 min 58 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (4 min 57 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (4 min 57 sec in block)
sh - (4 min 56 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 - (16 sec in block)Publish
stage block (Publish) - (15 sec in block)
sshagent - (6.6 sec in block)
sshagent block - (4.3 sec in block)
sh - (3.6 sec in self)
archiveArtifacts - (1.8 sec in self)build-result/**
stage - (6 sec in block)Declarative: Post Actions
stage block (Declarative: Post Actions) - (5.7 sec in block)
junit - (2.7 sec in self)**/surefire-reports/*.xml
script - (0.92 sec in block)
script block - (0.65 sec in block)