main #42

Merged
trachi93 merged 11 commits from main into development 2025-12-09 09:34:26 +01:00
Showing only changes of commit 425b1ee8fa - Show all commits

21
Jenkins Normal file
View File

@@ -0,0 +1,21 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}