mirror of https://github.com/OpenTTD/OpenTTD
Add: [Jenkinsfile] enable ANSI colors in logs
parent
af4b52aff6
commit
a5382d8dd8
|
@ -40,21 +40,23 @@ def generateCI(display_name, image_name) {
|
||||||
}
|
}
|
||||||
|
|
||||||
node {
|
node {
|
||||||
stage("Checkout") {
|
ansiColor('xterm') {
|
||||||
checkout scm
|
stage("Checkout") {
|
||||||
|
checkout scm
|
||||||
|
|
||||||
// Ensure we also have origin/master available
|
// Ensure we also have origin/master available
|
||||||
sh "git fetch --no-tags origin master:refs/remotes/origin/master"
|
sh "git fetch --no-tags origin master:refs/remotes/origin/master"
|
||||||
|
|
||||||
stash name: "source", useDefaultExcludes: false
|
stash name: "source", useDefaultExcludes: false
|
||||||
}
|
}
|
||||||
|
|
||||||
stage("Checkers") {
|
stage("Checkers") {
|
||||||
parallel ci_checkers_stages
|
parallel ci_checkers_stages
|
||||||
}
|
}
|
||||||
|
|
||||||
stage("Builds") {
|
stage("Builds") {
|
||||||
parallel ci_builds_stages
|
parallel ci_builds_stages
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue