mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Redirect stderr into build.log in Windows pipeline
The build.log is created and found, but no warnings are collected. Redirect stderr so the warnings end up in the log in the first place. Fixes: #8159 Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
This commit is contained in:
parent
8a8f2596ea
commit
ddcb844bcc
1 changed files with 1 additions and 1 deletions
|
|
@ -108,7 +108,7 @@ pipeline {
|
|||
steps {
|
||||
powershell """
|
||||
cd build\\workspaces\\vs2017
|
||||
& \"${visualStudioPath}\" pyrogenesis.sln /p:Configuration=${BUILD_TYPE} ${buildOptions} \$env:JOBS | Tee-Object -FilePath ${BUILD_TYPE}-build.log
|
||||
& \"${visualStudioPath}\" pyrogenesis.sln /p:Configuration=${BUILD_TYPE} ${buildOptions} \$env:JOBS 2>&1 | Tee-Object -FilePath ${BUILD_TYPE}-build.log
|
||||
"""
|
||||
}
|
||||
post {
|
||||
|
|
|
|||
Loading…
Reference in a new issue