fix(CI): use correct docker node
Some checks failed
gitea-sync/antos/pipeline/head There was a failure building this commit

This commit is contained in:
DanyLE 2024-03-10 16:40:16 +01:00
parent 54a596872e
commit 040e5c3c63

7
Jenkinsfile vendored
View File

@ -1,5 +1,10 @@
pipeline {
agent { node { label'xsangle/ci-tools:latest' } }
agent {
docker {
image 'xsangle/ci-tools:latest'
reuseNode true
}
}
options {
// Limit build history with buildDiscarder option:
// daysToKeepStr: history is only kept up to this many days.