-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile_update_scripts
More file actions
56 lines (50 loc) · 1.35 KB
/
Jenkinsfile_update_scripts
File metadata and controls
56 lines (50 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!groovy
pipeline {
// using same agnert as ConfigCheck job
agent {
label {
label 'ConfigCheck'
}
}
triggers {
cron('H 8 * * *')
}
environment {
SSH_CREDENTIALS = credentials('SSH')
TEST_INSTRUMENT_LIST = "${TEST_INSTRUMENT_LIST}"
USE_TEST_INSTRUMENT_LIST = "${USE_TEST_INSTRUMENT_LIST}"
DEBUG_MODE = "${DEBUG_MODE}"
}
stages {
stage('Checkout') {
steps {
timeout(time: 2, unit: 'HOURS') {
retry(5) {
checkout scm
}
}
}
}
stage('Check Instrument/Scripts can have master merged into it') {
steps {
echo 'Check Instrument/Scripts can have a clean merge master, and then merge master into it'
timeout(time: 1, unit: 'HOURS') {
bat '''
call installation_and_upgrade/call_update_scripts.bat
'''
}
}
}
}
post {
always {
logParser([
projectRulePath: 'parse_rules',
parsingRulesPath: '',
showGraphs: true,
unstableOnWarning: true,
useProjectRule: true,
])
}
}
}