diff options
author | Andres Freund <andres@anarazel.de> | 2022-01-13 10:26:22 -0800 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-01-13 10:26:22 -0800 |
commit | 8a1ce5e54f6d144e4f8e19af7c767b026ee0c956 (patch) | |
tree | 52cac5b8eb91b498a9c56282ed2f6973a3d50b44 | |
parent | 5513dc6a304d8bda114004a3b906cc6fde5d6274 (diff) | |
download | postgresql-8a1ce5e54f6d144e4f8e19af7c767b026ee0c956.tar.gz postgresql-8a1ce5e54f6d144e4f8e19af7c767b026ee0c956.zip |
ci: windows: enable build summary to make it easier to spot warnings / errors.
The build summary was disabled unintentionally by setting the build verbosity
lower.
While at it, also add ForceNoAlign to prevent msbuild from introducing
linebreaks in the middle of filenames etc - they make it harder to copy
output.
Discussion: https://postgr.es/m/20220113175554.u6gw7olrdfzivl3n@alap3.anarazel.de
-rw-r--r-- | .cirrus.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 19b3737fa11..910b1d6313a 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -358,8 +358,13 @@ task: # Avoids port conflicts between concurrent tap test runs PG_TEST_USE_UNIX_SOCKETS: 1 PG_REGRESS_SOCK_DIR: "c:/cirrus/" - # Use parallelism, disable file tracker, we're never going to rebuild... - MSBFLAGS: -m -verbosity:minimal /p:TrackFileAccess=false + # -m enables parallelism + # verbosity:minimal + Summary reduce verbosity, while keeping a summary of + # errors/warnings + # ForceNoAlign prevents msbuild from introducing line-breaks for long lines + # disable file tracker, we're never going to rebuild, and it slows down the + # build + MSBFLAGS: -m -verbosity:minimal "-consoleLoggerParameters:Summary;ForceNoAlign" /p:TrackFileAccess=false -nologo only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*windows.*' |