From 8caa72c3b5dceebc4034fd151527f4a8a1788075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 24 Oct 2023 11:43:58 +0200 Subject: [PATCH] fix(ci): use linux.bundle() to add credentials MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise none of these credentials are present: https://github.com/status-im/status-jenkins-lib/blob/master/vars/linux.groovy Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.tests-e2e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Jenkinsfile.tests-e2e b/ci/Jenkinsfile.tests-e2e index b7188291ba..70f3c8efe4 100644 --- a/ci/Jenkinsfile.tests-e2e +++ b/ci/Jenkinsfile.tests-e2e @@ -100,7 +100,7 @@ pipeline { GANACHE_NETWORK_RPC_URL = "http://localhost:${env.GANACHE_RPC_PORT}" } steps { script { - sh 'make nim_status_client' + linux.bundle('nim_status_client') } } }