forked from d2iq-archive/marathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile.scale
51 lines (41 loc) · 1.33 KB
/
Jenkinsfile.scale
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
#!/usr/bin/env groovy
node('shakedown-scale') {
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 click"
}
stage('Configure DCOS Cluster') {
println "Using: $params.dcos_url"
sh 'dcos config set core.timeout 11'
}
stage('Run Scale 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/scale/test_root_marathon_scale.py"
}
}
stage('Archive Results'){
archiveArtifacts 'scale-test.csv, *.json, scale.png'
}
}
}
}