Merge pull request #669 from rupalibehera/pr-pipeline

Adding Jenkinsfile for PR pipeline on Fabric8CD infrastructure
This commit is contained in:
Charlie Drage 2017-06-30 08:46:20 -04:00 committed by GitHub
commit eb808c36ff

13
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,13 @@
@Library('github.com/fabric8io/fabric8-pipeline-library@master')
def dummy
goTemplate{
dockerNode{
goMake{
githubOrganisation = 'kubernetes-incubator'
dockerOrganisation = 'fabric8'
project = 'kompose'
makeCommand = "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/usr/local/glide:/usr/local/:/go/bin:/home/jenkins/go/bin \
&& bash script/test/cmd/fix_detached_head.sh && make test"
}
}
}