build-invidious/Jenkinsfile

27 lines
492 B
Groovy

pipeline {
agent any
triggers {
cron "@monthly"
}
options {
timestamps()
ansiColor("xterm")
disableConcurrentBuilds()
}
stages {
stage('build') {
steps {
sh "env"
sh "./build.sh"
}
}
}
post {
cleanup {
cleanWs(deleteDirs: true,
disableDeferredWipeout: true,
notFailBuild: true)
}
}
}