chore(ci)_: archive logs in case of test failure
This commit is contained in:
parent
7b38a5b6bd
commit
e9882e88d3
|
@ -175,7 +175,12 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
success { script { github.notifyPR(true) } }
|
success { script { github.notifyPR(true) } }
|
||||||
failure { script { github.notifyPR(false) } }
|
failure {
|
||||||
|
script {
|
||||||
|
github.notifyPR(false)
|
||||||
|
archiveArtifacts('**/test_*.log')
|
||||||
|
}
|
||||||
|
}
|
||||||
cleanup {
|
cleanup {
|
||||||
dir(env.TMPDIR) { deleteDir() }
|
dir(env.TMPDIR) { deleteDir() }
|
||||||
sh "make git-clean"
|
sh "make git-clean"
|
||||||
|
|
Loading…
Reference in New Issue