BestNotes/Jenkinsfile

23 lines
456 B
Plaintext
Raw Normal View History

2019-11-19 17:19:25 +01:00
pipeline {
agent any
stages {
stage('Build') {
steps {
2019-11-19 17:22:16 +01:00
sh "cd test"
echo 'Building..'
2019-11-19 17:19:25 +01:00
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}