This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 843
/
Jenkinsfile.mom.si
56 lines (52 loc) · 1.67 KB
/
Jenkinsfile.mom.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env groovy
timeout(90) {
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('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'],
[$class: 'StringBinding',
credentialsId: '7bdd2775-2911-41ba-918f-59c8ae52326d',
variable: 'DOCKER_HUB_USERNAME'],
[$class: 'StringBinding',
credentialsId: '42f2e3fb-3f4f-47b2-a128-10ac6d0f6825',
variable: 'DOCKER_HUB_PASSWORD']
]) {
try {
sh "cp -f \"${DOT_SHAKEDOWN}\" ~/.shakedown"
sh """
TERM=velocity shakedown \
--stdout all \
--stdout-inline \
--timeout ${timeout} \
--pytest-option "--junitxml=shakedown.xml" \
--ssh-key-file \"${CLI_TEST_SSH_KEY}\" \
--dcos-url $params.dcos_url tests/system/test_marathon_on_marathon.py tests/system/test_marathon_on_marathon_ee.py
"""
} finally {
junit allowEmptyResults: true, testResults: 'shakedown.xml'
}
}
}
}
}
}
}