Jenkinsfile

Jenkinsfile
This commit is contained in:
Alicja Musiał 2019-11-18 17:37:57 +00:00
parent 9611c9f8c4
commit 77b371c3d0

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