Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions build_tools/JenkinsfileCheckRecentBuilds
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,29 @@ pipeline {
cron('H 1 * * *')
}

options {
disableConcurrentBuilds()
timestamps()
// as we "checkout scm" with lock as a stage, we do not want to do it here
skipDefaultCheckout(true)
}
stages {

stage("Checkout") {
steps {
timeout(time: 1, unit: 'HOURS') {
checkout scm
}
}
}

stage("Check Instrument Scripts") {
steps {
timeout(time: 1, unit: 'HOURS') {
bat """
call build_tools/check_builds_are_recent.bat
"""
}
}
}
}
Expand Down
Loading