Skip to content

Commit dae1494

Browse files
committed
[Build] Remove P-build reference from Y-Builds Jenkins folder
1 parent 44c1250 commit dae1494

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

JenkinsJobs/Builds/build.jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def BUILD = {
2222
mailingList: '[email protected]', testJobFolder:'AutomatedTests', testConfigurations: I_TEST_CONFIGURATIONS]
2323
case 'Y': return [*:buildConfig,
2424
typeName: 'Beta Java 25', branchLabel: 'java25',
25-
mailingList: '[email protected]' , testJobFolder:'YPBuilds' , testConfigurations: Y_TEST_CONFIGURATIONS]
25+
mailingList: '[email protected]' , testJobFolder:'YBuilds' , testConfigurations: Y_TEST_CONFIGURATIONS]
2626
}
2727
}
2828
error("Unsupported job: $JOB_BASE_NAME" )

JenkinsJobs/YBuilds/Y_unit_tests.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ for (STREAM in config.Y.streams.keySet()){
1313
def MINOR = STREAM.split('\\.')[1]
1414
for (TEST_CONFIG in TEST_CONFIGURATIONS){
1515

16-
pipelineJob('YPBuilds/ep' + MAJOR + MINOR + 'Y-unit-' + TEST_CONFIG.os + '-' + TEST_CONFIG.arch + '-java' + TEST_CONFIG.javaVersion){
16+
pipelineJob('YBuilds/ep' + MAJOR + MINOR + 'Y-unit-' + TEST_CONFIG.os + '-' + TEST_CONFIG.arch + '-java' + TEST_CONFIG.javaVersion){
1717
description('Run Eclipse SDK Tests for the platform implied by this job\'s name')
1818
parameters { // Define parameters in job configuration to make them available from the very first build onwards
1919
stringParam('buildId', null, 'Build Id to test (such as I20240611-1800, N20120716-0800).')

JenkinsJobs/seedJob.jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pipeline {
1919
def folderDefinitions = [
2020
'AutomatedTests': [ displayName: 'Automated Tests', description: 'Folder for Unit Tests'],
2121
'Builds': [description: 'Eclipse periodic build jobs.'],
22-
'YPBuilds': [displayName: 'Y and P Builds', description: 'Builds and tests for the beta java builds.'],
22+
'YBuilds': [displayName: 'Y Builds', description: 'Builds and tests for the beta java builds.'],
2323
'Cleanup': [description: 'Cleanup Scripts.'],
2424
'Releng': [description: 'Jobs related to routine releng tasks. Some are periodic, some are "manual" jobs ran only when needed.'],
2525
]
@@ -48,7 +48,7 @@ pipeline {
4848
'''.stripIndent() + config.schedule).trim() : null]
4949
}
5050
jobConfigurations.Y.streams.each{ STREAM, config ->
51-
pipelineJobDefinitions["YPBuilds/Y-build-${STREAM}"] = [scriptPath: buildJob.scriptPath, branch: config.branch,
51+
pipelineJobDefinitions["YBuilds/Y-build-${STREAM}"] = [scriptPath: buildJob.scriptPath, branch: config.branch,
5252
description: 'Beta Java Eclipse builds.', disabled: config.disabled, cronTrigger: config.schedule ? ('''\
5353
TZ=America/Toronto
5454
# Format: Minute Hour Day Month Day-of-week (1-7)

RELENG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The **Y-build** is a full sdk build with the new java version for testing.
4444
The **P-build** is a patch build that contains modified plugins designed to be installed on top of the current I-build to test the new java version.
4545
They are now managed by the JDT-project itself in (org.eclipse.jdt.releng)[https://github.com/eclipse-jdt/eclipse.jdt/tree/master/org.eclipse.jdt.releng].
4646

47-
The builds themselves and their unit tests are in the (Y Builds)[JenkinsJobs/YBuilds] folder in git and the (Y and P Builds)[https://ci.eclipse.org/releng/job/YPBuilds/] folder in jenkins.
47+
The builds themselves and their unit tests are in the (Y Builds)[JenkinsJobs/YBuilds] folder in git and the (Y Builds)[https://ci.eclipse.org/releng/job/YBuilds/] folder in jenkins.
4848

4949
## Setting Up New Builds
5050

0 commit comments

Comments
 (0)