ci: Remove Clean parameter
This parameter no longer makes sense as the workspace is not preserved between runs anyhow.pull/2/head
parent
19cb4256f3
commit
5a1054bf01
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue