JenkinsTest/Jenkinsfile
Nilton Constantino e8a5c120ed second commit
2025-02-19 08:39:38 +00:00

24 lines
360 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}