From 169724c5b52e613b3fa0be7f910371361a6cb2ef Mon Sep 17 00:00:00 2001 From: Christian Dietrich Date: Tue, 4 Apr 2023 12:28:38 +0200 Subject: [PATCH] [#2149] build nightly with tycho 4.0.0-SNAPSHOT Signed-off-by: Christian Dietrich --- Jenkinsfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 67e5ad78e70..3d834228c97 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,15 +6,14 @@ pipeline { } parameters { - choice(name: 'TARGET_PLATFORM', choices: ['r202203', 'r202206', 'r202209', 'r202212', 'r202303', 'r202306', 'r202309', 'r202312', 'r202403', 'r202406', 'latest'], description: 'Which Target Platform should be used?') + choice(name: 'TARGET_PLATFORM', choices: ['latest', 'r202203', 'r202206', 'r202209', 'r202212', 'r202303', 'r202306', 'r202309', 'r202312', 'r202403', 'r202406'], description: 'Which Target Platform should be used?') // see https://wiki.eclipse.org/Jenkins#JDK - choice(name: 'JDK_VERSION', choices: [ '11', '17' ], description: 'Which JDK version should be used?') + choice(name: 'JDK_VERSION', choices: ['17', '11'], description: 'Which JDK version should be used?') } triggers { - parameterizedCron(env.BRANCH_NAME == 'main' ? ''' - H H(0-1) * * * %TARGET_PLATFORM=r202203;JDK_VERSION=17 - H H(3-4) * * * %TARGET_PLATFORM=latest;JDK_VERSION=17 + parameterizedCron(env.BRANCH_NAME == 'cd_tycho40' ? ''' + H H(12-13) * * * %TARGET_PLATFORM=latest;JDK_VERSION=17 ''' : '') }