skelton pipeline

nginx_conf
Nicolas Arenas 2024-09-30 13:26:49 +02:00 committed by Nicolas Arenas
parent bd4dc77f1d
commit 827185bd40
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....'
}
}
}
}