fix: Restore Jenkinsfile for normal operation - base image now in Harbor
All checks were successful
armco-org/visual-search-engine/pipeline/head This commit was not built

This commit is contained in:
2026-01-03 15:11:56 +05:30
parent b7c59cd7aa
commit 91dfb06128

4
Jenkinsfile vendored
View File

@@ -5,12 +5,12 @@
properties([
parameters([
booleanParam(name: 'BUILD_BASE', defaultValue: true, // TEMP: set back to false after base image built
booleanParam(name: 'BUILD_BASE', defaultValue: false,
description: 'Build base image with TensorFlow (only needed when requirements.txt changes)')
])
])
def buildBase = true // TEMP: hardcoded to build base image first time
def buildBase = params.BUILD_BASE ?: false
def builds = []
if (buildBase) {