Skip to content
StepArgumentsStatus
Start of Pipeline - (24 min in block)
node - (24 min in block)centos-latest
node block - (24 min in block)
stage - (4.7 sec in block)Declarative: Checkout SCM
stage block (Declarative: Checkout SCM) - (4.7 sec in block)
checkout - (4.7 sec in self)
withEnv - (24 min in block)GIT_BRANCH, GIT_COMMIT, GIT_PREVIOUS_COMMIT, GIT_PREVIOUS_SUCCESSFUL_COMMIT, GIT_URL
withEnv block - (24 min in block)
timeout - (24 min in block)
timeout block - (24 min in block)
timestamps - (24 min in block)
timestamps block - (24 min in block)
stage - (34 ms in block)Declarative: Tool Install
stage block (Declarative: Tool Install) - (24 ms in block)
tool - (5 ms in self)apache-maven-3.9.5
envVarsForTool - (6 ms in self)
tool - (4 ms in self)openjdk-jdk17-latest
envVarsForTool - (5 ms in self)
withEnv - (24 min in block)M2_HOME, MAVEN_HOME, PATH+MAVEN, JAVA_HOME, PATH+JDK
withEnv block - (24 min in block)
stage - (5.7 sec in block)get m2e-core-tests
stage block (get m2e-core-tests) - (5.7 sec in block)
tool - (5 ms in self)apache-maven-3.9.5
envVarsForTool - (6 ms in self)
tool - (5 ms in self)openjdk-jdk17-latest
envVarsForTool - (5 ms in self)
withEnv - (5.6 sec in block)M2_HOME, MAVEN_HOME, PATH+MAVEN, JAVA_HOME, PATH+JDK
withEnv block - (5.6 sec in block)
sh - (5.5 sec in self)git submodule update --init --recursive --remote
stage - (1.4 sec in block)initialize PGP
stage block (initialize PGP) - (1.4 sec in block)
tool - (0.12 sec in self)apache-maven-3.9.5
envVarsForTool - (0.11 sec in self)
tool - (0.11 sec in self)openjdk-jdk17-latest
envVarsForTool - (0.11 sec in self)
withEnv - (0.92 sec in block)M2_HOME, MAVEN_HOME, PATH+MAVEN, JAVA_HOME, PATH+JDK
withEnv block - (0.88 sec in block)
withCredentials - (0.61 sec in block)
withCredentials block - (0.58 sec in block)
sh - (0.31 sec in self)gpg --batch --import "${KEYRING}"
sh - (0.27 sec in self) 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 - (23 min in block)Build
stage block (Build) - (23 min in block)
tool - (5 ms in self)apache-maven-3.9.5
envVarsForTool - (7 ms in self)
tool - (5 ms in self)openjdk-jdk17-latest
envVarsForTool - (6 ms in self)
withEnv - (23 min in block)M2_HOME, MAVEN_HOME, PATH+MAVEN, JAVA_HOME, PATH+JDK
withEnv block - (23 min in block)
withCredentials - (22 min in block)
withCredentials block - (22 min in block)
xvnc - (22 min in block)true
xvnc block - (22 min in block)
sh - (22 min in self) mavenArgs="clean verify --batch-mode -Dmaven.test.error.ignore=true -Dmaven.test.failure.ignore=true -Dtycho.p2.baselineMode=failCommon" if [[ ${BRANCH_NAME} == master ]] || [[ ${BRANCH_NAME} =~ m2e-[0-9]+\.[0-9]+\.x ]]; then mvn ${mavenArgs} -Peclipse-sign,its -Dgpg.passphrase="${KEYRING_PASSPHRASE}" -Dgpg.keyname="011C526F29B2CE79" else # Clear KEYRING_PASSPHRASE environment variable export KEYRING_PASSPHRASE='EMPTY' mvn ${mavenArgs} -Pits fi
archiveArtifacts - (3.5 sec in self)org.eclipse.m2e.repository/target/*.zip, */target/work/data/.metadata/.log, m2e-core-tests/*/target/work/data/.metadata/.log, **/target/artifactcomparison/*
archiveArtifacts - (1 min 19 sec in self)
junit - (0.68 sec in self)*/target/surefire-reports/TEST-*.xml,*/*/target/surefire-reports/TEST-*.xml
stage - (6.4 sec in block)Deploy Snapshot
stage block (Deploy Snapshot) - (6.4 sec in block)
tool - (4 ms in self)apache-maven-3.9.5
envVarsForTool - (6 ms in self)
tool - (3 ms in self)openjdk-jdk17-latest
envVarsForTool - (5 ms in self)
withEnv - (6.4 sec in block)M2_HOME, MAVEN_HOME, PATH+MAVEN, JAVA_HOME, PATH+JDK
withEnv block - (6.4 sec in block)
sshagent - (6.4 sec in block)
sshagent block - (6.3 sec in block)
sh - (6.2 sec in self) deployM2ERepository() { echo Deploy m2e repo to ${1} ssh genie.m2e@projects-storage.eclipse.org " rm -rf ${1}/* && mkdir -p ${1}" scp -r org.eclipse.m2e.repository/target/repository/* genie.m2e@projects-storage.eclipse.org:${1} } # Read M2E branding version version=$(xmllint --xpath 'string(/feature/@version)' org.eclipse.m2e.sdk.feature/feature.xml) if [[ $version =~ ([0-9]+\.[0-9]+\.[0-9]+)\.qualifier ]] # backslash itself has to be escaped in Jenkinsfile then M2E_VERSION="${BASH_REMATCH[1]}" else echo Failed to read M2E_VERSION. Abort deployment. exit 1 fi deployM2ERepository /home/data/httpd/download.eclipse.org/technology/m2e/snapshots/${M2E_VERSION} deployM2ERepository /home/data/httpd/download.eclipse.org/technology/m2e/snapshots/latest