ci: fix syntax

This commit is contained in:
zontreck 2025-01-30 20:34:52 -07:00
parent 5fc4057d93
commit cded93d569

7
Jenkinsfile vendored
View file

@ -2,11 +2,12 @@ pipeline {
agent any agent any
options { options {
buildDiscarder { buildDiscarder (
logRotator(numToKeepStr: '5') logRotator(numToKeepStr: '5')
} )
} }
stages {
stage("Build") { stage("Build") {
agent { agent {
label "flutter" label "flutter"
@ -34,4 +35,6 @@ pipeline {
} }
} }
} }
}
} }