1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-20 02:21:48 +08:00

Merge pull request #5338 from ipfs/ci/test-gx-dupes

ci: check for gx deps dupes
This commit is contained in:
Whyrusleeping
2018-08-05 10:59:08 -07:00
committed by GitHub

8
ci/Jenkinsfile vendored
View File

@ -116,6 +116,14 @@ ansiColor('xterm') { withEnv(['TERM=xterm-color']) {
},
'go build': {
gobuild_step(fast_build_platforms)
},
'gx deps dupes': {
setupStep('linux') { run ->
timeout(time: check_timeout, unit: 'MINUTES') {
run 'make gx-deps'
run 'test -z "$(./bin/gx deps dupes)"'
}
}
}
)
}