forked from LaconicNetwork/kompose
* Cleanup mentions about glide * Don't use glide to ignore vendor directory Since go-1.9, "./..." no longer contains the "vendor" directory. Also, since #1305 migrated dependency management from glide to go mod, there is no need to think about the "vendor" directory. See: https://golang.org/doc/go1.9#vendor-dotdotdot * go mod tidy
14 lines
470 B
Groovy
14 lines
470 B
Groovy
@Library('github.com/fabric8io/fabric8-pipeline-library@master')
|
|
def dummy
|
|
goTemplate{
|
|
dockerNode{
|
|
goMake{
|
|
githubOrganisation = 'kubernetes'
|
|
dockerOrganisation = 'fabric8'
|
|
project = 'kompose'
|
|
makeCommand = "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/usr/local/:/go/bin:/home/jenkins/go/bin \
|
|
&& bash script/test/cmd/fix_detached_head.sh && make test"
|
|
}
|
|
}
|
|
}
|