Skip to content

Commit

Permalink
Added Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gmsantos committed Nov 29, 2018
1 parent f1142f9 commit 9e1d3eb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
dir(path: './ansible') {
sh 'ansible-galaxy install -r requirements.yml'
}

}
}
stage('Plan') {
steps {
input 'Apply previous plan?'
sh 'echo \'Passou\''
}
}
}
}

0 comments on commit 9e1d3eb

Please sign in to comment.