forked from dcos/metronome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile.si
40 lines (35 loc) · 1.07 KB
/
Jenkinsfile.si
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
#!/usr/bin/env groovy
node('shakedown') {
wrap([$class: 'MesosSingleUseSlave']) {
wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'XTerm']) {
def timeout=360000
properties([
parameters([
string(name: 'dcos_url',
defaultValue: '',
description: 'URL to DC/OS Enterprise Cluster'
)]
)
])
stage('Checkout Repo') {
checkout scm
}
stage('Installing Dependencies') {
sh "pip3 install retrying"
}
stage('Run System Integration Tests'){
withCredentials(
[ [$class: 'FileBinding',
credentialsId: '11fcc957-5156-4470-ae34-d433da88248a',
variable: 'DOT_SHAKEDOWN'],
[$class: 'FileBinding',
credentialsId: '23743034-1ac4-49f7-b2e6-a661aee2d11b',
variable: 'CLI_TEST_SSH_KEY']
]) {
sh "cp -f \"${DOT_SHAKEDOWN}\" ~/.shakedown"
sh "TERM=velocity shakedown --stdout all --stdout-inline --timeout ${timeout} --ssh-key-file \"${CLI_TEST_SSH_KEY}\" --dcos-url $params.dcos_url tests/system"
}
}
}
}
}