From cefafbccc66443f9a5381fad751c3382b1e45481 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 16 Oct 2023 15:25:21 +0200 Subject: [PATCH] chode(ci): drop outdated fix for client builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This hack was necessar before the proper fix was applied in: https://github.com/status-im/status-desktop/pull/11955 Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.tests-e2e | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/ci/Jenkinsfile.tests-e2e b/ci/Jenkinsfile.tests-e2e index 80ca8a27db..b7188291ba 100644 --- a/ci/Jenkinsfile.tests-e2e +++ b/ci/Jenkinsfile.tests-e2e @@ -98,16 +98,9 @@ pipeline { stage('Client') { environment { GANACHE_NETWORK_RPC_URL = "http://localhost:${env.GANACHE_RPC_PORT}" - /* Hack-fix for wrong config path location causing: - * Error: unhandled exception: Read-only file system */ - RESOURCES_LAYOUT = '-d:production' } steps { script { - /* Temporary hack-fix for failing Linux builds: - * https://github.com/status-im/infra-ci/issues/88 */ - timeout(10) { retry(20) { - sh 'make nim_status_client' - } } + sh 'make nim_status_client' } } }