From e5f9147eeccefbf796631d05cfce69df02b21e14 Mon Sep 17 00:00:00 2001
From: Bjarke Madsen <bjarke@nordu.net>
Date: Wed, 6 Nov 2024 12:58:20 +0100
Subject: [PATCH] add jenkinsfile

---
 Jenkinsfile | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 Jenkinsfile

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 00000000..c247591c
--- /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 = 'compendium-v2'
+List<String> extraRecipients = ['bjarke@nordu.net', 'erik.reid@geant.org']
+List<String> pythonTestVersions = ['3.11']
+
+SimplePythonBuild(name, extraRecipients, pythonTestVersions)
-- 
GitLab