27 lines
427 B
Plaintext
27 lines
427 B
Plaintext
pipeline {
|
|
|
|
agent any
|
|
|
|
stages {
|
|
|
|
stage("build") {
|
|
|
|
steps {
|
|
echo 'building the application...'
|
|
}
|
|
}
|
|
stage("test") {
|
|
|
|
steps {
|
|
echo 'testing the application...'
|
|
}
|
|
}
|
|
stage("deploy") {
|
|
|
|
steps {
|
|
echo 'deploying the application...'
|
|
}
|
|
}
|
|
}
|
|
}
|