Create Jenkinsfile

This commit is contained in:
Kacper Kociubinski 2020-11-30 18:33:35 +01:00
parent fd000eee34
commit 62627c0553

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