|
@@ -17,7 +17,10 @@ pipeline {
|
|
stages {
|
|
stages {
|
|
stage("Build") {
|
|
stage("Build") {
|
|
when {
|
|
when {
|
|
- expression { build_repo != null || not build_repo.empty }
|
|
|
|
|
|
+ allOf {
|
|
|
|
+ expression { build_repo != null }
|
|
|
|
+ expression { not build_repo.empty }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
steps {
|
|
steps {
|
|
echo "Building with repo $build_repo and updating $service_update"
|
|
echo "Building with repo $build_repo and updating $service_update"
|