diff --git a/Jenkinsfile b/Jenkinsfile index 4d025b116dddd55ff39f9c2eb578281356d6366a..2f9d0767aa828b8efa87fe9bf29ebb6eef582348 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,3 +1,14 @@ +// https://gitlab.geant.net/live-projects/jenkins-pipeline/-/tree/master/vars library 'SWDPipeline' -SimplePythonBuild('nat-resource-management'); +// Parameters: +// name (must match the name of the project in GitLab/SWD release jenkins) +String name = 'nat-resource-management' + +// 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.10', '3.11'] + +SimplePythonBuild(name, extraRecipients, pythonTestVersions)