lint 481 B

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