From f88094d6de1bd221929758c3dadbc9dfb7a0db97 Mon Sep 17 00:00:00 2001 From: Lucian Corlaciu Date: Fri, 22 Dec 2017 12:54:18 +0100 Subject: [PATCH] remove dependency install for building --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e702a1a8e98f..f09f585ef709 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,12 +17,12 @@ node { withCredentials([ usernamePassword( - credentialsId: balrogCredentialsID, - passwordVariable: 'BALROG_PASSWORD', + credentialsId: balrogCredentialsID, + passwordVariable: 'BALROG_PASSWORD', usernameVariable: 'BALROG_ADMIN')]) { docker.image(imgName).inside("-u 0:0") { - sh './install-dev-dependencies.sh' + sh './install-dev-dependencies.sh --no-prompt' sh '/bin/bash ./cliqz/build_sign_and_publish.sh '+CLIQZ_CHANNEL } }