From 5a1054bf01626dc2bb528c254ffddd8a3de4107e Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Thu, 1 Dec 2022 20:40:27 -0600 Subject: [PATCH] ci: Remove Clean parameter This parameter no longer makes sense as the workspace is not preserved between runs anyhow. --- ci/Jenkinsfile | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 881e4d5..ceac39f 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -11,20 +11,9 @@ pipeline { disableConcurrentBuilds() } - parameters { - booleanParam \ - name: 'Clean', - description: 'Clean the workspace and perform a full rebuild' - } - stages { stage('Build') { steps { - script { - if (params.Clean) { - sh 'rm -rf _build' - } - } copyArtifacts \ filter: 'aarch64/mqttdpms', projectName: '../mqttdpms/master',