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 {
|
pipeline {
|
||||||
agent { label 'master' }
|
agent { label 'master' }
|
||||||
|
|
||||||
|
parameters {
|
||||||
|
string(
|
||||||
|
name: 'BUILD_TYPE',
|
||||||
|
defaultValue: 'nightly',
|
||||||
|
description: 'Values: nightly / e2e / release'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
options {
|
options {
|
||||||
disableConcurrentBuilds()
|
disableConcurrentBuilds()
|
||||||
buildDiscarder(logRotator(
|
buildDiscarder(logRotator(
|
||||||
|
|
Loading…
Reference in New Issue