From bd86a76a06b1aa21a1b6ee13a395485783c072e9 Mon Sep 17 00:00:00 2001
From: Bruno Verachten <gounthar@users.noreply.github.com>
Date: Tue, 11 Feb 2025 17:02:31 +0100
Subject: [PATCH] feat(ci): Builds on the Jenkins Infrastructure

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

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 00000000..5399dafd
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,12 @@
+/*
+See the documentation for more options:
+https://github.com/jenkins-infra/pipeline-library/
+*/
+buildPlugin(
+    forkCount: '1C', // Run a JVM per core in tests
+    useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
+    configurations: [
+        [platform: 'linux', jdk: 17],
+        [platform: 'windows', jdk: 11]
+    ]
+)
\ No newline at end of file