1
0
Fork 0

Add: [Jenkinsfile] enable ANSI colors in logs

pull/6720/head
Patric Stout 2018-04-14 16:38:48 +02:00
parent af4b52aff6
commit a5382d8dd8
1 changed files with 13 additions and 11 deletions

24
Jenkinsfile vendored
View File

@ -40,21 +40,23 @@ def generateCI(display_name, image_name) {
}
node {
stage("Checkout") {
checkout scm
ansiColor('xterm') {
stage("Checkout") {
checkout scm
// Ensure we also have origin/master available
sh "git fetch --no-tags origin master:refs/remotes/origin/master"
// Ensure we also have origin/master available
sh "git fetch --no-tags origin master:refs/remotes/origin/master"
stash name: "source", useDefaultExcludes: false
}
stash name: "source", useDefaultExcludes: false
}
stage("Checkers") {
parallel ci_checkers_stages
}
stage("Checkers") {
parallel ci_checkers_stages
}
stage("Builds") {
parallel ci_builds_stages
stage("Builds") {
parallel ci_builds_stages
}
}
}