From 1abedba9bfd4d02ee9344eb68b6f28ead7cc82a6 Mon Sep 17 00:00:00 2001 From: markoburcul Date: Thu, 23 Oct 2025 12:03:42 +0200 Subject: [PATCH] ci: move it to a container Referenced issue: * https://github.com/status-im/infra-ci/issues/188 --- Jenkinsfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d7001bc..7892ac7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,15 @@ 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 ' + + '--user jenkins' + } + } options { disableConcurrentBuilds()