@cryptotaxi247 / kubo / commits / 7d10b1e2b

ci: check for gx deps dupes

License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com>

Łukasz Magiera committed Aug 3, 2018 at 15:34 UTC 7d10b1e2bc405ae644e3bcd0bdd07cc19ebadc75
1 file changed +8
ci/Jenkinsfile
+8
@@ -116,6 +116,14 @@ ansiColor('xterm') { withEnv(['TERM=xterm-color']) {
116 },
117 'go build': {
118 gobuild_step(fast_build_platforms)
119 + },
120 + 'gx deps dupes': {
121 + setupStep('linux') { run ->
122 + timeout(time: check_timeout, unit: 'MINUTES') {
123 + run 'make gx-deps'
124 + run 'test -z "$(./bin/gx deps dupes)"'
125 + }
126 + }
127 }
128 )
129 }