27 lines
555 B
Groovy
27 lines
555 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('test') {
|
|
steps {
|
|
script {
|
|
echo "Testing the application..."
|
|
}
|
|
}
|
|
}
|
|
stage('build') {
|
|
steps {
|
|
script {
|
|
echo "Building the application..."
|
|
}
|
|
}
|
|
}
|
|
stage('deploy') {
|
|
steps {
|
|
script {
|
|
echo "Deploying the application..."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|