Add Jenkinsfile for CI/CD pipeline setup, including build, test, package, and deployment stages.

This commit is contained in:
Maxime Pierront
2025-11-23 00:39:26 +01:00
parent cb499eaf32
commit 56aa4c7b3a

5
Jenkinsfile vendored
View File

@@ -1,5 +1,10 @@
pipeline {
agent any
tools {
jdk 'jdk25'
}
stages {
stage('Compilation') {
steps {