From 642c49c707f90201aaa4119ed0f8e11890c0ab6d Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Wed, 19 Jul 2023 11:55:43 -0400 Subject: [PATCH] Publish EBR builds of Orbit to N location by default This leaves the latest-I available to redirect to new orbit-simrel aggregated repo. Part of https://github.com/eclipse-orbit/orbit-simrel/issues/1 --- Jenkinsfile | 2 +- releng/website/downloads/dlconfig.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 767f09d1..6b1a5e3e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,7 +8,7 @@ pipeline { booleanParam(defaultValue: true, description: 'Whether the latest-X repository should reference this build, if it succeeds. Enabled by default. Generally this is disabled when building for a service release.', name: 'UPDATE_LATEST_X') string(defaultValue: 'main', description: 'The branch of the Git repositories that will be build. Committers should not need to touch this field.', name: 'BUILD_BRANCH') string(defaultValue: '', description: 'If a value is set, this will create a composite p2 repository pointing to this resulting build (if successful), at the given name under the downloads page.

This is only ever set to the release name (eg. 2019-06) for a milestone (S) build. The purpose is to give consumers a static location that tracks the release.', name: 'SIMREL_NAME') - choice(choices: ['I', 'S', 'M', 'R'], description: 'Valid options : I, S, M, or R. Most committers should be using I. S, M, or R should be done by a project lead, or someone tasked with putting together the release.', name: 'BUILD_LABEL') + choice(choices: ['N', 'S', 'M', 'R'], description: 'Valid options : N, S, M, or R. Most committers should be using N. S, M, or R should be done by a project lead, or someone tasked with putting together the release.
Note that I should not be used anymore as that URL redirects to the new simrel-orbit infrastructure.', name: 'BUILD_LABEL') string(defaultValue: '', description: 'Description to appear on the downloads page.', name: 'DESCRIPTION') } agent { diff --git a/releng/website/downloads/dlconfig.php b/releng/website/downloads/dlconfig.php index 04732802..55c2fbe3 100644 --- a/releng/website/downloads/dlconfig.php +++ b/releng/website/downloads/dlconfig.php @@ -5,13 +5,13 @@ $dropPrefix = array(); $dropPrefix[]="R"; $dropPrefix[]="S"; -$dropPrefix[]="I"; +$dropPrefix[]="N"; $dropPrefix[]="M"; $dropType = array(); $dropType[]="Recommended: Long term, persisted repositories."; $dropType[]="Stable: To be used for Milestone builds"; -$dropType[]="Integration: Work towards next Stable (Milestone) build for SimRel"; +$dropType[]="Nightly: Consume by aggregator to produce simrel-orbit nightly build"; $dropType[]="Maintenance: Work towards Oxygen.3a"; // the "prefix" array and dropType array must be of same size, defined in right order