forked from mdn/kuma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
53 lines (49 loc) · 1.38 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
@Library('github.com/mozmar/jenkins-pipeline@master')
def loadBranch(String branch) {
if (fileExists("./Jenkinsfiles/${branch}.yml")) {
config = readYaml file: "./Jenkinsfiles/${branch}.yml"
println "config ==> ${config}"
}
else {
config = []
}
if (config && config.pipeline && config.pipeline.enabled == false) {
println "Pipeline disabled."
}
else {
if (config && config.pipeline && config.pipeline.script) {
println "Loading ./Jenkinsfiles/${config.pipeline.script}.groovy"
load "./Jenkinsfiles/${config.pipeline.script}.groovy"
}
else {
println "Loading ./Jenkinsfiles/${branch}.groovy"
load "./Jenkinsfiles/${branch}.groovy"
}
}
}
node {
stage("Prepare") {
checkout scm
sh 'git submodule sync'
sh 'git submodule update --init --recursive'
setGitEnvironmentVariables()
// Set UID to jenkins
env['UID'] = 1000
// Prepare for junit test results
sh "mkdir -p test_results"
sh "rm -f test_results/*.xml"
// When checking in a file exists in another directory start with './' or
// prepare to fail.
try {
if (fileExists("./Jenkinsfiles/${env.BRANCH_NAME}.groovy") || fileExists("./Jenkinsfiles/${env.BRANCH_NAME}.yml")) {
loadBranch(env.BRANCH_NAME)
}
else {
loadBranch("default")
}
}
finally {
junit 'test_results/*.xml'
}
}
}