-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathJenkinsfile
26 lines (26 loc) · 900 Bytes
/
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
def langs = ['golang', 'java-spring', 'kotlin-spring']
def stepsForParallel = [:]
for (lang in langs) {
stepsForParallel["$lang"] = {
node("docker") {
stage("Checkout: $lang") {
checkout([
$class : 'GitSCM',
branches : scm.branches,
doGenerateSubmoduleConfigurations: scm.doGenerateSubmoduleConfigurations,
extensions : scm.extensions + [
[$class: 'CleanCheckout'],
],
userRemoteConfigs : scm.userRemoteConfigs
])
}
stage("Build: $lang") {
sh """
docker build -t tech-db-hello-$lang -f Dockerfile.$lang .
"""
}
}
}
}
stepsForParallel.failFast = false
parallel stepsForParallel