Add timestamp to build tests

pull/21842/head
Muxi Yan 5 years ago
parent 3003fc0b21
commit 37cb19fb9e
  1. 6
      src/objective-c/tests/build_one_example.sh
  2. 20
      src/objective-c/tests/verbose_time.sh

@ -25,6 +25,8 @@ set -ev
# CocoaPods requires the terminal to be using UTF-8 encoding.
export LANG=en_US.UTF-8
TEST_PATH=$(cd "$(dirname $0)" > /dev/null ; pwd)
cd `dirname $0`/../../..
cd $EXAMPLE_PATH
@ -34,7 +36,7 @@ rm -rf Pods
rm -rf *.xcworkspace
rm -f Podfile.lock
pod install
pod install | $TEST_PATH/verbose_time.sh
set -o pipefail
XCODEBUILD_FILTER='(^CompileC |^Ld |^.*clang |^ *cd |^ *export |^Libtool |^.*libtool |^CpHeader |^ *builtin-copy )'
@ -47,6 +49,7 @@ if [ "$SCHEME" == "tvOS-sample" ]; then
-derivedDataPath Build/Build \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
| $TEST_PATH/verbose_time.sh \
| egrep -v "$XCODEBUILD_FILTER" \
| egrep -v "^$" -
else
@ -58,6 +61,7 @@ else
-derivedDataPath Build/Build \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
| $TEST_PATH/verbose_time.sh \
| egrep -v "$XCODEBUILD_FILTER" \
| egrep -v "^$" -
fi

@ -0,0 +1,20 @@
#!/bin/bash
# Copyright 2019 gRPC authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#!/bin/bash
while IFS= read -r line; do
echo "$(date) - $line"
done
Loading…
Cancel
Save