ci: Remove Clean parameter

This parameter no longer makes sense as the workspace is not preserved
between runs anyhow.
pull/2/head
Dustin 2022-12-01 20:40:27 -06:00
parent 19cb4256f3
commit 5a1054bf01
1 changed files with 0 additions and 11 deletions

11
ci/Jenkinsfile vendored
View File

@ -11,20 +11,9 @@ pipeline {
disableConcurrentBuilds() disableConcurrentBuilds()
} }
parameters {
booleanParam \
name: 'Clean',
description: 'Clean the workspace and perform a full rebuild'
}
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
script {
if (params.Clean) {
sh 'rm -rf _build'
}
}
copyArtifacts \ copyArtifacts \
filter: 'aarch64/mqttdpms', filter: 'aarch64/mqttdpms',
projectName: '../mqttdpms/master', projectName: '../mqttdpms/master',