Jenkins: Remove timestamps & ansicolor wrapper
Both plugins have an option to be applied globally nowadays, so we don't need to add it to the Jenkinsfile.
This commit is contained in:
parent
115bf04c0b
commit
cc582ce6bb
2 changed files with 26 additions and 28 deletions
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
|
@ -71,8 +71,8 @@ pys.each { py ->
|
|||
}
|
||||
}
|
||||
|
||||
timestamps {
|
||||
ansiColor('xterm') {
|
||||
// MAIN //
|
||||
|
||||
parallel(tasks)
|
||||
stage('Windows binary') {
|
||||
windowsBuild()
|
||||
|
@ -80,8 +80,6 @@ timestamps {
|
|||
stage('Allure report') {
|
||||
processAllure()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
def buildDockerfile(image) {
|
||||
def uid = sh(returnStdout: true, script: 'id -u').trim()
|
||||
|
|
6
tests/modules/Jenkinsfile
vendored
6
tests/modules/Jenkinsfile
vendored
|
@ -42,7 +42,7 @@ def runTests() {
|
|||
}
|
||||
}
|
||||
|
||||
ansiColor('xterm') {
|
||||
// MAIN //
|
||||
node {
|
||||
def img = prepareDocker()
|
||||
|
||||
|
@ -55,7 +55,8 @@ ansiColor('xterm') {
|
|||
}
|
||||
|
||||
stage('Allure Report') {
|
||||
copyArtifacts filter: 'allure-history.zip', optional: true, projectName: JOB_NAME, selector: lastWithArtifacts()
|
||||
copyArtifacts filter: 'allure-history.zip', optional: true,
|
||||
projectName: JOB_NAME, selector: lastWithArtifacts()
|
||||
if (fileExists('allure-history.zip')) {
|
||||
unzip dir: 'allure-data', quiet: true, zipFile: 'allure-history.zip'
|
||||
sh 'rm -f allure-history.zip'
|
||||
|
@ -65,5 +66,4 @@ ansiColor('xterm') {
|
|||
publishHTML reportDir: 'allure-report', reportFiles: 'index.html', reportName: 'Allure Report'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue