diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000000000000000000000000000000000000..ff5ccdd0a35056ce613efae39482dd4e49414c5d --- /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-polling-manager' +List<String> extraRecipients = ['bjarke@nordu.net', 'erik.reid@geant.org'] +List<String> pythonTestVersions = ['3.11'] + +SimplePythonBuild(name, extraRecipients, pythonTestVersions) diff --git a/setup.py b/setup.py index 3326323a7b2195de287ab00393b27b357535e7b3..48f7deb65a93831bc213caa04d7950495022f783 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='brian-polling-manager', - version="0.11", + version="0.12", author='GEANT', author_email='swd@geant.org', description='service for managing BRIAN polling checks',