add default value for BUILD_TYPE parameter
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
01b89cc8b1
commit
3a3a6f2aa5
|
@ -1,6 +1,14 @@
|
|||
pipeline {
|
||||
agent { label 'master' }
|
||||
|
||||
parameters {
|
||||
string(
|
||||
name: 'BUILD_TYPE',
|
||||
defaultValue: 'nightly',
|
||||
description: 'Values: nightly / e2e / release'
|
||||
)
|
||||
}
|
||||
|
||||
options {
|
||||
disableConcurrentBuilds()
|
||||
buildDiscarder(logRotator(
|
||||
|
|
Loading…
Reference in New Issue