From 36bc01ac0dd20551fc5f3127494d68652df7a001 Mon Sep 17 00:00:00 2001 From: markoburcul Date: Mon, 20 Oct 2025 12:47:18 +0200 Subject: [PATCH] ci: move builds to a container Referenced issue: * https://github.com/status-im/infra-ci/issues/188 --- ci/Jenkinsfile.lpt | 9 ++++++++- ci/Jenkinsfile.release | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/ci/Jenkinsfile.lpt b/ci/Jenkinsfile.lpt index c81a21b78..0b855227c 100644 --- a/ci/Jenkinsfile.lpt +++ b/ci/Jenkinsfile.lpt @@ -2,7 +2,14 @@ library 'status-jenkins-lib@v1.8.17' pipeline { - agent { label 'linux' } + agent { + docker { + label 'linuxcontainer' + image 'harbor.status.im/infra/ci-build-containers:linux-base-1.0.0' + args '--volume=/var/run/docker.sock:/var/run/docker.sock ' + + '--user jenkins' + } + } options { timestamps() diff --git a/ci/Jenkinsfile.release b/ci/Jenkinsfile.release index 4a0cd0df3..570a37d5f 100644 --- a/ci/Jenkinsfile.release +++ b/ci/Jenkinsfile.release @@ -2,7 +2,14 @@ library 'status-jenkins-lib@v1.8.17' pipeline { - agent { label 'linux' } + agent { + docker { + label 'linuxcontainer' + image 'harbor.status.im/infra/ci-build-containers:linux-base-1.0.0' + args '--volume=/var/run/docker.sock:/var/run/docker.sock ' + + '--user jenkins' + } + } options { timestamps()