Jenkinsfile: Add ANSI color parsing for Linux unit testing/Docker image build.

This commit is contained in:
/dev/urandom 2016-10-03 22:27:24 +02:00
parent 4a8d5b0730
commit 3056e0639d
No known key found for this signature in database
GPG Key ID: 41322B973E0F295E

2
Jenkinsfile vendored
View File

@ -243,6 +243,7 @@ gitlabBuilds(builds: ["Checkout & Versioning", "Build", "Testing", "Archiving"])
} }
executions["$testName on Linux"] = { executions["$testName on Linux"] = {
node("docker && linux && amd64") { node("docker && linux && amd64") {
wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'XTerm']) {
try { try {
def image = null def image = null
dir("src") { dir("src") {
@ -264,6 +265,7 @@ gitlabBuilds(builds: ["Checkout & Versioning", "Build", "Testing", "Archiving"])
} }
} }
} }
}
parallel executions parallel executions
} }
} }