This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
vxmppb/Jenkinsfile

22 lines
358 B
Plaintext
Raw Normal View History

2021-06-20 09:57:44 -04:00
pipeline {
2021-06-20 19:21:11 -04:00
agent any
2021-06-20 09:57:44 -04:00
stages {
2021-06-20 19:21:11 -04:00
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
2021-06-20 09:57:44 -04:00
steps {
2021-06-20 19:21:11 -04:00
echo 'Deploying....'
2021-06-20 09:57:44 -04:00
}
}
}
}