From a1e5f6aeef2dae8c696ffe7f137760fc31f5022c Mon Sep 17 00:00:00 2001 From: zhenyus Date: Sat, 22 Feb 2025 19:20:35 +0800 Subject: [PATCH] fix(jenkins): add dependenciesManager field for Python apps in Jenkinsfile Signed-off-by: zhenyus --- freeleaps/alpha/ci/freeleaps-service-hub/Jenkinsfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/freeleaps/alpha/ci/freeleaps-service-hub/Jenkinsfile b/freeleaps/alpha/ci/freeleaps-service-hub/Jenkinsfile index 0aa7165f..c5272844 100644 --- a/freeleaps/alpha/ci/freeleaps-service-hub/Jenkinsfile +++ b/freeleaps/alpha/ci/freeleaps-service-hub/Jenkinsfile @@ -14,6 +14,7 @@ executeFreeleapsPipeline { name: 'authentication', root: 'apps/authentication', language: 'python', + dependenciesManager: 'pip', buildCacheEnabled: true, buildAgentImage: 'python:3.10-slim-buster', buildArtifacts: ['.'], @@ -33,6 +34,7 @@ executeFreeleapsPipeline { name: 'central-storage', root: 'apps/central_storage', language: 'python', + dependenciesManager: 'pip', buildAgentImage: 'python:3.10-slim-buster', buildArtifacts: ['.'], buildCacheEnabled: true, @@ -52,6 +54,7 @@ executeFreeleapsPipeline { name: 'content', root: 'apps/content', language: 'python', + dependenciesManager: 'pip', buildAgentImage: 'python:3.10-slim-buster', buildArtifacts: ['.'], buildCacheEnabled: true, @@ -71,6 +74,7 @@ executeFreeleapsPipeline { name: 'notification', root: 'apps/notification', language: 'python', + dependenciesManager: 'pip', buildAgentImage: 'python:3.10-slim-buster', buildArtifacts: ['.'], buildCacheEnabled: true, @@ -90,6 +94,7 @@ executeFreeleapsPipeline { name: 'payment', root: 'apps/payment', language: 'python', + dependenciesManager: 'pip', buildAgentImage: 'python:3.10-slim-buster', buildArtifacts: ['.'], buildCacheEnabled: true,