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 {
|
environment {
|
||||||
BUILD_PLATFORM = 'android'
|
BUILD_PLATFORM = 'android'
|
||||||
LANG = 'en_US.UTF-8'
|
LANG = 'en_US.UTF-8'
|
||||||
|
|
|
@ -1,6 +1,14 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'macos' }
|
agent { label 'macos' }
|
||||||
|
|
||||||
|
parameters {
|
||||||
|
booleanParam(
|
||||||
|
name: 'BUILD_TYPE',
|
||||||
|
description: 'Specify build type. Values: pr / nightly / release',
|
||||||
|
defaultValue: 'pr',
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
options {
|
options {
|
||||||
timestamps()
|
timestamps()
|
||||||
/* Prevent Jenkins jobs from running forever */
|
/* 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 {
|
options {
|
||||||
timestamps()
|
timestamps()
|
||||||
/* Prevent Jenkins jobs from running forever */
|
/* Prevent Jenkins jobs from running forever */
|
||||||
|
|
|
@ -1,6 +1,14 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'macos' }
|
agent { label 'macos' }
|
||||||
|
|
||||||
|
parameters {
|
||||||
|
booleanParam(
|
||||||
|
name: 'BUILD_TYPE',
|
||||||
|
description: 'Specify build type. Values: pr / nightly / release',
|
||||||
|
defaultValue: 'pr',
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
options {
|
options {
|
||||||
timestamps()
|
timestamps()
|
||||||
/* Prevent Jenkins jobs from running forever */
|
/* 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 {
|
options {
|
||||||
/* Prevent Jenkins jobs from running forever */
|
/* Prevent Jenkins jobs from running forever */
|
||||||
timeout(time: 45, unit: 'MINUTES')
|
timeout(time: 45, unit: 'MINUTES')
|
||||||
|
|
Loading…
Reference in New Issue