se agrega jenkinsfile

This commit is contained in:
Natalia Villegas 2018-12-16 16:09:23 -03:00
parent d1d7c968df
commit e0456812f3

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