From 33c4af5789631131ae6cca71877a52f30f177daf Mon Sep 17 00:00:00 2001 From: dpebot Date: Wed, 26 Sep 2018 04:11:39 -0700 Subject: [PATCH 1/2] Re-generate library using /synth.py --- .kokoro/samples-test.sh | 2 ++ .kokoro/system-test.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.kokoro/samples-test.sh b/.kokoro/samples-test.sh index a91cbf5a..5a81ec01 100755 --- a/.kokoro/samples-test.sh +++ b/.kokoro/samples-test.sh @@ -26,7 +26,9 @@ cd $(dirname $0)/.. # Run a pre-test hook, if a pre-samples-test.sh is in the project if [ -f .kokoro/pre-samples-test.sh ]; then + set +x . .kokoro/pre-samples-test.sh + set -x fi npm install diff --git a/.kokoro/system-test.sh b/.kokoro/system-test.sh index a954b794..fd8f0b63 100755 --- a/.kokoro/system-test.sh +++ b/.kokoro/system-test.sh @@ -26,7 +26,9 @@ cd $(dirname $0)/.. # Run a pre-test hook, if a pre-system-test.sh is in the project if [ -f .kokoro/pre-system-test.sh ]; then + set +x . .kokoro/pre-system-test.sh + set -x fi npm install From 494fb085c9c4a1ba215ec9655b3d238ea3f86b2d Mon Sep 17 00:00:00 2001 From: Jonathan Lui Date: Wed, 26 Sep 2018 17:02:20 -0700 Subject: [PATCH 2/2] update npm@5 for windows --- .kokoro/test.bat | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.kokoro/test.bat b/.kokoro/test.bat index a8534ba8..d6047366 100644 --- a/.kokoro/test.bat +++ b/.kokoro/test.bat @@ -17,6 +17,8 @@ cd /d %~dp0 cd .. +call npm install -g npm@5 || goto :error + call npm install || goto :error call npm run test || goto :error