Making the build work

This commit is contained in:
retropikzel 2025-04-18 07:52:24 +03:00
parent 667179306d
commit 601fd28f24
1 changed files with 5 additions and 1 deletions

6
Jenkinsfile vendored
View File

@ -1,5 +1,9 @@
pipeline {
agent any
agent {
dockerfile {
path 'Dockerfile.jenkins'
}
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}