Skip to content

Commit 2f914e6

Browse files
DEVO-733: Adding the param
1 parent 5860e5e commit 2f914e6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Jenkinsfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,18 @@ pipeline{
2525
triggers{
2626
parameterizedCron(env.BRANCH_NAME == "develop" ? "00 02 * * * % regressions=true" : "")
2727
}
28+
parameters{
29+
booleanParam(name: 'regressions', defaultValue: false, description: 'indicator if build is for regressions')
30+
}
2831
options {
2932
checkoutToSubdirectory 'node-client-api'
3033
buildDiscarder logRotator(artifactDaysToKeepStr: '7', artifactNumToKeepStr: '', daysToKeepStr: '7', numToKeepStr: '10')
3134
}
32-
environment{
35+
environment{
3336
NODE_HOME_DIR= "/home/builder/nodeJs/node-v18.14.0-linux-x64"
3437
DMC_USER = credentials('MLBUILD_USER')
3538
DMC_PASSWORD = credentials('MLBUILD_PASSWORD')
36-
}
39+
}
3740
stages{
3841
stage('runtests-11.0.0'){
3942
steps{

0 commit comments

Comments
 (0)