From 049e564e89a68f0d5c6d103b1e5ff7a79b6ef50e Mon Sep 17 00:00:00 2001 From: markoburcul Date: Thu, 6 Nov 2025 18:02:33 +0100 Subject: [PATCH] ci: add missing jenkins lib --- ci/Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 0b09d74ab0..44a54d3c87 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -1,3 +1,6 @@ +#!/usr/bin/env groovy +library 'status-jenkins-lib@v1.9.27' + pipeline { agent { docker { @@ -56,7 +59,7 @@ pipeline { steps { sshagent(credentials: ['status-im-auto-ssh']) { script { - nix.develop('npm run deploy', pure: true) + nix.develop('npm run deploy', pure: false) } } }