Add Jenkinsfile

This commit is contained in:
Pavel Kachalouski
2023-01-21 14:29:58 +01:00
commit 4efa313e2d

24
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,24 @@
pipeline {
agent any
options {
skipStagesAfterUnstable()
}
stages {
stage('Build') {
steps {
sh 'echo Build'
}
}
stage('Test'){
steps {
sh 'echo Test'
}
}
stage('Deploy') {
steps {
sh 'echo Deploy'
}
}
}
}