Skip to content

Commit bb95163

Browse files
committed
Back to staging
- Use https://download.eclipse.org/staging/2026-03/ - Improve/fix the updater for sending RC2 emails. Part of #426
1 parent 88565e8 commit bb95163

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

  • releng/org.eclipse.epp.config

releng/org.eclipse.epp.config/org.eclipse.epp.releng.updater/src/org/eclipse/epp/releng/updater/Updater.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,9 +327,16 @@ public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) th
327327
}
328328

329329
private void sendEmail() throws IOException {
330+
var folder = "RC2".equals(MILESTONE) ? RELEASE_DIR : MILESTONE;
330331
var text = getContents("https://download.eclipse.org/technology/epp/downloads/release/" + SIMREL_VERSION + "/"
331-
+ MILESTONE + "/_email.txt");
332+
+ folder + "/_email.txt");
332333
text = text.replace("https://github.com/eclipse-packaging/packages/labels/endgame", getEndgameIssue());
334+
if ("RC2".equals(MILESTONE)) {
335+
text = text.replace("Download link:",
336+
"Temporary download link: " + "https://download.eclipse.org/technology/epp/downloads/release/"
337+
+ SIMREL_VERSION + "/" + RELEASE_DIR + "/\n" + "Final download link: ");
338+
}
339+
333340
openURL("mailto:epp-dev@eclipse.org?subject=" + encode("EPP " + SIMREL_VERSION + " " + MILESTONE) + "&body="
334341
+ encode(text));
335342
}

releng/org.eclipse.epp.config/parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<!-- Name release directory on download.eclipse.org -->
4242
<RELEASE_DIR>202603051000</RELEASE_DIR>
4343
<!-- SimRel Repo to build from -->
44-
<SIMREL_REPO>https://download.eclipse.org/releases/2026-03/202603111000/</SIMREL_REPO>
44+
<SIMREL_REPO>https://download.eclipse.org/staging/2026-03/</SIMREL_REPO>
4545
<!-- ID used to generate the filename of the packages -->
4646
<eclipse.simultaneous.release.id>${RELEASE_NAME}-${RELEASE_MILESTONE}</eclipse.simultaneous.release.id>
4747
<!-- Timestamp used in various places, e.g. the about dialog (see about.mappings) -->

0 commit comments

Comments
 (0)