mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 10:42:53 +00:00
ci: save and show both stdout and stderr
By using the `|&` operator we send both to `tee`. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
916d29e5c5
commit
70bf8452f7
@ -54,10 +54,10 @@ pipeline {
|
||||
stage('Checks') {
|
||||
parallel {
|
||||
stage('Lint') {
|
||||
steps { sh "make lint > ${LOG_FILE}" }
|
||||
steps { sh "make lint 2>&1 | tee ${LOG_FILE}" }
|
||||
}
|
||||
stage('Tests') {
|
||||
steps { sh "make test >> ${LOG_FILE}" }
|
||||
steps { sh "make test 2>&1 | tee -a ${LOG_FILE}" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user