mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-31 10:29:10 +00:00
Add: [Jenkinsfile] enable ANSI colors in logs
This commit is contained in:
24
Jenkinsfile
vendored
24
Jenkinsfile
vendored
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user