This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit cb41606dc90c99c17902cd65a298cf7bda635d95 Author: Otavio R. Piske <angusyo...@gmail.com> AuthorDate: Sun May 26 08:30:59 2024 +0200 (chores) camel-ci: remove the clean option as it clashes with the workspace cleanup Signed-off-by: Otavio R. Piske <angusyo...@gmail.com> --- Jenkinsfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 274c32d239b..1b43c99f99a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -41,7 +41,6 @@ pipeline { } parameters { - booleanParam(name: 'CLEAN', defaultValue: true, description: 'Perform the build in clean workspace') booleanParam(name: 'VIRTUAL_THREAD', defaultValue: false, description: 'Perform the build using virtual threads') choice(name: 'PLATFORM_FILTER', choices: ['all', 'ppc64le', 's390x', 'ubuntu'], description: 'Run on specific platform') choice(name: 'JDK_FILTER', choices: ['all', 'jdk_17_latest', 'jdk_21_latest'], description: 'Run on specific jdk') @@ -96,9 +95,6 @@ pipeline { } stages { stage('Clean workspace') { - when { - expression { params.CLEAN } - } steps { cleanWs() checkout scm