From b777498b93d26075cf5aaa0dd98b09d817f2995e Mon Sep 17 00:00:00 2001 From: Mohammad Torkashvand <mohammad.torkashvand@geant.org> Date: Tue, 5 Sep 2023 16:52:15 +0200 Subject: [PATCH] Updated the Jenkinsfile for new SimplePythonBuild implementation --- Jenkinsfile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8d6dfeec..b15672bf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,3 +1,14 @@ +// https://gitlab.geant.net/live-projects/jenkins-pipeline/-/tree/master/vars library 'SWDPipeline' -SimplePythonBuild('geant-service-orchestrator'); +// Parameters: +// name (must match the name of the project in GitLab/SWD release jenkins) +String name = 'geant-service-orchestrator' + +// emails of people to always notify on build status changes +List<String> extraRecipients = ['erik.reid@geant.org'] + +// python versions (docker tags) to test against, must be explicit versions +List<String> pythonTestVersions = ['3.11'] + +SimplePythonBuild(name, extraRecipients, pythonTestVersions) -- GitLab