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' } } }