From e2ae65df20cc7dfb5cff3c43d87dcd5feda1d48d Mon Sep 17 00:00:00 2001 From: markoburcul Date: Wed, 22 Oct 2025 21:57:34 +0200 Subject: [PATCH] ci: move it to the container Referenced issue: * https://github.com/status-im/infra-ci/issues/188 --- Jenkinsfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 734dcc47b..174201456 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,14 @@ library 'status-jenkins-lib@v1.9.24' pipeline { - agent { label 'linux' } + agent { + docker { + label 'linuxcontainer' + image 'harbor.status.im/infra/ci-build-containers:linux-base-1.0.0' + args '--volume=/nix:/nix ' + + '--volume=/etc/nix:/etc/nix ' + } + } options { disableConcurrentBuilds()