set BUILD_TYPE to pr as default
Signed-off-by: Jakub Sokołowski <jakub@status.im> Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
This commit is contained in:
parent
45aa302637
commit
63ac18afde
|
@ -13,6 +13,14 @@ pipeline {
|
|||
))
|
||||
}
|
||||
|
||||
parameters {
|
||||
booleanParam(
|
||||
name: 'BUILD_TYPE',
|
||||
description: 'Specify build type. Values: pr / nightly / release',
|
||||
defaultValue: 'pr',
|
||||
)
|
||||
}
|
||||
|
||||
environment {
|
||||
BUILD_PLATFORM = 'android'
|
||||
LANG = 'en_US.UTF-8'
|
||||
|
|
|
@ -1,6 +1,14 @@
|
|||
pipeline {
|
||||
agent { label 'macos' }
|
||||
|
||||
parameters {
|
||||
booleanParam(
|
||||
name: 'BUILD_TYPE',
|
||||
description: 'Specify build type. Values: pr / nightly / release',
|
||||
defaultValue: 'pr',
|
||||
)
|
||||
}
|
||||
|
||||
options {
|
||||
timestamps()
|
||||
/* Prevent Jenkins jobs from running forever */
|
||||
|
|
|
@ -14,6 +14,14 @@ pipeline {
|
|||
}
|
||||
}
|
||||
|
||||
parameters {
|
||||
booleanParam(
|
||||
name: 'BUILD_TYPE',
|
||||
description: 'Specify build type. Values: pr / nightly / release',
|
||||
defaultValue: 'pr',
|
||||
)
|
||||
}
|
||||
|
||||
options {
|
||||
timestamps()
|
||||
/* Prevent Jenkins jobs from running forever */
|
||||
|
|
|
@ -1,6 +1,14 @@
|
|||
pipeline {
|
||||
agent { label 'macos' }
|
||||
|
||||
parameters {
|
||||
booleanParam(
|
||||
name: 'BUILD_TYPE',
|
||||
description: 'Specify build type. Values: pr / nightly / release',
|
||||
defaultValue: 'pr',
|
||||
)
|
||||
}
|
||||
|
||||
options {
|
||||
timestamps()
|
||||
/* Prevent Jenkins jobs from running forever */
|
||||
|
|
|
@ -14,6 +14,14 @@ pipeline {
|
|||
}
|
||||
}
|
||||
|
||||
parameters {
|
||||
booleanParam(
|
||||
name: 'BUILD_TYPE',
|
||||
description: 'Specify build type. Values: pr / nightly / release',
|
||||
defaultValue: 'pr',
|
||||
)
|
||||
}
|
||||
|
||||
options {
|
||||
/* Prevent Jenkins jobs from running forever */
|
||||
timeout(time: 45, unit: 'MINUTES')
|
||||
|
|
Loading…
Reference in New Issue