Add example jenkins file

This commit is contained in:
Mario Hüttel 2021-10-10 22:38:58 +02:00
parent aad9be9905
commit 2bc2c0c670
1 changed files with 21 additions and 0 deletions

21
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,21 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}