fix: Add BUILD_BASE parameter to Jenkins UI
All checks were successful
armco-org/visual-search-engine/pipeline/head This commit was not built
All checks were successful
armco-org/visual-search-engine/pipeline/head This commit was not built
This commit is contained in:
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
@@ -3,6 +3,13 @@
|
||||
// Build base image (with TensorFlow) only when requirements.txt changes
|
||||
// Then app builds are fast (~30s) using the cached base image
|
||||
|
||||
properties([
|
||||
parameters([
|
||||
booleanParam(name: 'BUILD_BASE', defaultValue: false,
|
||||
description: 'Build base image with TensorFlow (only needed when requirements.txt changes)')
|
||||
])
|
||||
])
|
||||
|
||||
def buildBase = params.BUILD_BASE ?: false
|
||||
|
||||
def builds = []
|
||||
|
||||
Reference in New Issue
Block a user