Skip to content

Commit

Permalink
Merge dbf4e3b into 7458a9e
Browse files Browse the repository at this point in the history
  • Loading branch information
raulvaldoleiros committed Apr 27, 2018
2 parents 7458a9e + dbf4e3b commit 23d4037
Show file tree
Hide file tree
Showing 3 changed files with 822 additions and 732 deletions.
31 changes: 31 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
pipeline {
agent any
stages {
stage('Build') {
agent any
steps {
sh 'mvn clean install'
}
}
stage('input') {
steps {
input(message: 'test', id: 'id', ok: 'ij')
}
}
stage('coiso') {
parallel {
stage('coiso') {
steps {
echo 'teste'
}
}
stage('error') {
steps {
echo 'teste2'
sh 'exit 0'
}
}
}
}
}
}
Loading

0 comments on commit 23d4037

Please sign in to comment.