BitSearch/Jenkinsfile

21 lines
357 B
Plaintext
Raw Permalink Normal View History

2021-12-03 17:52:08 +01:00
pipeline {
agent any
2021-12-03 17:55:07 +01:00
2021-12-03 17:52:08 +01:00
stages {
2021-12-03 17:55:07 +01:00
stage('Build') {
2021-12-03 17:52:08 +01:00
steps {
2021-12-03 17:55:07 +01:00
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
2021-12-03 17:52:08 +01:00
}
}
}
}