diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000000000000000000000000000000000000..bd5177efe9649b374c8215df5aa560d2a6e68f3d --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,12 @@ +// https://gitlab.geant.net/live-projects/jenkins-pipeline/-/tree/master/vars +library 'SWDPipeline' + +// Parameters: +// project_name (must match the name of the project in GitLab/SWD release jenkins) +// extra_recipients (optional, list of email addresses to always receive notifications, in addition to the default in jenkins) +// python_test_versions (list of python versions, resolving to docker tags, to test against) +String name = 'brian-dashboard-manager' +List<String> extraRecipients = ['bjarke@nordu.net', 'erik.reid@geant.org', 'sam.roberts@geant.org', 'pelle.koster@geant.org'] +List<String> pythonTestVersions = ['3.6', '3.11'] + +SimplePythonBuild(name, extraRecipients, pythonTestVersions)