Make Kokoro logs less noisy (#3110)

This commit is contained in:
Matt Kwong 2017-06-30 13:53:52 -07:00 committed by GitHub
parent 6d8a66f3e3
commit 16285dc634
2 changed files with 5 additions and 4 deletions

View File

@ -15,8 +15,8 @@ mkdir grpc-java-helper
@rem Install 7za
@rem TODO(mattkwong): After Windows tests are no longer running on Jenkins, 7za
@rem doesn't need to be installed and make_dependencies.bat can use unzip instead
wget http://www.7-zip.org/a/7za920.zip
unzip 7za920.zip
wget -q http://www.7-zip.org/a/7za920.zip >NUL
unzip 7za920.zip >NUL
mv 7za.exe grpc-java-helper
cd grpc-java-helper
@ -34,9 +34,11 @@ echo vcProtobufInclude=%ESCWORKSPACE%\\grpc-java-helper\\protobuf-%PROTOBUF_VER%
cmd.exe /C "%WORKSPACE%\gradlew.bat build"
@rem Rename test results .xml files to format parsable by Kokoro
@echo off
for /r %%F in (TEST-*.xml) do (
mkdir "%%~dpnF"
move "%%F" "%%~dpnF\sponge_log.xml"
move "%%F" "%%~dpnF\sponge_log.xml" >NUL
)
@echo on
exit %%ERRORLEVEL%%

View File

@ -5,7 +5,6 @@ build_file: "grpc-java/buildscripts/kokoro/windows.bat"
timeout_mins: 45
action {
define_artifacts {
regex: "github/grpc-java/all/build/docs/javadoc/**",
regex: "**/build/test-results/**/*.xml"
}
}