From 73c9b01889602b8d9a8f4ab20c298b5b93105a36 Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Sat, 18 Apr 2026 18:39:11 +0200 Subject: [PATCH] [I/Y-Build] Assemble Tycho eclipse-run runtime from just built artifacts Using the just built artifacts ensures that problems are visible immediately and prevents a potential build 'dead-lock' if erroneous artifacts are used from a previous build. --- JenkinsJobs/Builds/build.jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/JenkinsJobs/Builds/build.jenkinsfile b/JenkinsJobs/Builds/build.jenkinsfile index 450b3802e0e..a7f1d8b8d2b 100644 --- a/JenkinsJobs/Builds/build.jenkinsfile +++ b/JenkinsJobs/Builds/build.jenkinsfile @@ -335,6 +335,7 @@ pipeline { # Generate repository reports mvn tycho-eclipse:eclipse-run@generate-repo-report -f eclipse-platform-parent \ + -Declipse-sdk-repo=file://${PLATFORM_REPO_DIR} \ -Declipserun.workArea=${TEMP_DIR}/repo-report \ -DreportRepoDir=${PLATFORM_REPO_DIR} \ -DreportOutputDir=${DROP_DIR}/${BUILD_ID}/buildlogs @@ -358,6 +359,7 @@ pipeline { mkdir -p $(dirname ${baseline}) curl -o ${baseline} https://download.eclipse.org/eclipse/downloads/drops4/${PREVIOUS_RELEASE_ID}/eclipse-SDK-${PREVIOUS_RELEASE_VER}-win32-x86_64.zip mvn tycho-eclipse:eclipse-run@generate-api-report -f eclipse-platform-parent \ + -Declipse-sdk-repo=file://${PLATFORM_REPO_DIR} \ -Declipserun.workArea=${TEMP_DIR}/apitoolings-logs \ -DgitRepoRoot=${AGG_DIR} \ -Dbaseline=${baseline} \