add jenkinsfile

This commit is contained in:
massta 2019-11-18 18:38:44 +01:00
parent 23a466c914
commit b3a7813df6
1 changed files with 21 additions and 0 deletions

21
jenkinsfile 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....'
}
}
}
}