From 7d10b1e2bc405ae644e3bcd0bdd07cc19ebadc75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Fri, 3 Aug 2018 15:34:29 +0200 Subject: [PATCH] ci: check for gx deps dupes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit License: MIT Signed-off-by: Ɓukasz Magiera --- ci/Jenkinsfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 3f147c6d86c..cd712f2d3a1 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -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)"' + } + } } ) }