Add Jenkinsfile

This commit is contained in:
Stanislav Bezuhlyi 2021-03-31 20:59:47 +03:00
parent e2fbc56130
commit b80b8d9869

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