123456789101112131415161718 |
- @Library('salt@master-1.4') _
- // Define the maximum time, in hours, that a test run should run for
- def build_timeout = 2
- def salt_target_branch = 'master'
- def concurrent_builds = 1
- properties([
- buildDiscarder(logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '20')),
- ])
- buildDocs(
- env: env,
- build_timeout: build_timeout,
- concurrent_builds: concurrent_builds
- )
- // vim: ft=groovy
|