// https://gitlab.geant.net/live-projects/jenkins-pipeline/-/tree/master/vars library 'SWDPipeline' // 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'] // Environment variables you want to pass Map<String, String> appEnvironmentVariables = [ 'SKIP_ALL_TESTS': '1', // add more as needed ] SimplePythonBuild(name, extraRecipients, pythonTestVersions, appEnvironmentVariables)