New builds

This commit is contained in:
retropikzel 2026-07-22 22:04:30 +03:00
parent 94d4915116
commit 1ec9630ae4
1 changed files with 5 additions and 1 deletions

6
Jenkinsfile vendored
View File

@ -1,5 +1,7 @@
pipeline {
agent any
agent {
label 'agent1'
}
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
@ -9,6 +11,7 @@ pipeline {
agent {
docker {
image 'schemers/chibi:head'
reuseNode true
args '--user=root'
}
}
@ -37,6 +40,7 @@ pipeline {
agent {
docker {
image 'schemers/sagittarius:head'
reuseNode true
args '--user=root'
}
}