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