skelton pipeline

testing
Nicolas Arenas 2024-09-30 13:26:49 +02:00
parent 68a4db6d6f
commit 114a1de095
1 changed files with 20 additions and 0 deletions

20
tests/API-dhcp/Jenkinsfile vendored 100644
View File

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