This repository has been archived by the owner on Aug 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 679
/
Jenkinsfile
54 lines (49 loc) · 1.53 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
#!groovy
@Library('github.com/mozmeao/jenkins-pipeline@master')
def loadBranch(String branch) {
utils = load 'Jenkinsfiles/utils.groovy'
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'] = sh(returnStdout: true, script: 'id -u jenkins').trim()
// 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 {
if (findFiles(glob: 'test_results/*.xml')) {
junit 'test_results/*.xml'
}
}
}
}