Skip to content

Commit

Permalink
Added vanilla jenkins file
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmilward committed Jun 11, 2018
1 parent bcddd2e commit c29f54f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
pipeline {
agent any
options {
disableConcurrentBuilds()
}
stages {
stage('Test Execute') {
steps {
dir(path: 'ModelCatalogueCorePluginTestApp') {
sh 'npm install'
sh 'bower install'
wrap([$class: 'Xvfb']) {
sh '/opt/grails/bin/grails test-app -Dserver.port=8081 -Dgeb.env=chrome -DdownloadFilepath=/home/ubuntu unit: integration:
}
}
}
}
}
}

0 comments on commit c29f54f

Please sign in to comment.