Jenkins hinzugefügt

This commit is contained in:
2025-06-24 17:20:25 +02:00
parent 6b1a49583e
commit 425b1ee8fa

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....'
}
}
}
}