Only keep 3 builds

This commit is contained in:
zontreck 2024-08-30 23:50:42 -07:00
parent abe9a5ba55
commit 68e26ab33b

8
Jenkinsfile vendored
View file

@ -1,6 +1,14 @@
pipeline {
agent any
options {
buildDiscarder(
logRotator(
numToKeepStr: '3'
)
)
}
stages {
stage("Build on Linux") {
agent {