ci: add missing jenkins lib

This commit is contained in:
Marko Burčul 2025-11-06 18:02:33 +01:00
parent 101ffe8a04
commit 049e564e89
No known key found for this signature in database
GPG Key ID: FC4CD2F9A040D54A

5
ci/Jenkinsfile vendored
View File

@ -1,3 +1,6 @@
#!/usr/bin/env groovy
library 'status-jenkins-lib@v1.9.27'
pipeline { pipeline {
agent { agent {
docker { docker {
@ -56,7 +59,7 @@ pipeline {
steps { steps {
sshagent(credentials: ['status-im-auto-ssh']) { sshagent(credentials: ['status-im-auto-ssh']) {
script { script {
nix.develop('npm run deploy', pure: true) nix.develop('npm run deploy', pure: false)
} }
} }
} }