docs 445 B

123456789101112131415161718
  1. @Library('salt@master-1.4') _
  2. // Define the maximum time, in hours, that a test run should run for
  3. def build_timeout = 2
  4. def salt_target_branch = 'master'
  5. def concurrent_builds = 1
  6. properties([
  7. buildDiscarder(logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '20')),
  8. ])
  9. buildDocs(
  10. env: env,
  11. build_timeout: build_timeout,
  12. concurrent_builds: concurrent_builds
  13. )
  14. // vim: ft=groovy