From c3bf9f529f2c77714127e057af390270ae7f5b31 Mon Sep 17 00:00:00 2001 From: Neda Moeini <neda.moeini@geant.org> Date: Thu, 10 Apr 2025 11:27:23 +0200 Subject: [PATCH] Add Jenkinsfile --- Jenkinsfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..8dafef9 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,11 @@ + +// 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 = 'sage-validation' +List<String> extraRecipients = ['neda.moeini@geant.org'] +List<String> pythonTestVersions = ['3.11'] +SimplePythonBuild(name, extraRecipients, pythonTestVersions) \ No newline at end of file -- GitLab