forked from pyca/bcrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
57 lines (51 loc) · 1.34 KB
/
Jenkinsfile
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
57
def configs = [
[
label: 'windows',
toxenvs: ['py27', 'py34', 'py35', 'py36', 'py37'],
],
[
label: 'windows64',
toxenvs: ['py27', 'py34', 'py35', 'py36', 'py37'],
],
]
def build(label, toxenv) {
try {
timeout(time: 5, unit: 'MINUTES') {
if (label.startsWith("windows")) {
bat """
@set PATH="C:\\Python27";"C:\\Python27\\Scripts";%PATH%
tox -r -e $toxenv
"""
} else {
ansiColor('xterm') {
sh "tox -r -e $toxenv -- --color=yes"
}
}
}
} finally {
deleteDir()
}
}
def builders = [:]
for (config in configs) {
def label = config["label"]
def toxenvs = config["toxenvs"]
// We need to use a temporary variable here and then
// bind it in the for loop so that it is properly captured
// by the closure
for (_toxenv in toxenvs) {
def toxenv = _toxenv
def combinedName = "${label}-${toxenv}"
builders[combinedName] = {
node(label) {
stage("Checkout") {
checkout scm
}
stage(combinedName) {
build(label, toxenv)
}
}
}
}
}
parallel builders