Skip to content
This repository was archived by the owner on Aug 4, 2022. It is now read-only.

Commit 94b21e0

Browse files
author
Jeff Verkoeyen
committed
Merge branch 'release-candidate' into stable
2 parents 6adf20d + 2169e8d commit 94b21e0

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 4.2.1
2+
3+
Bazel builds will no longer force verbose output. Verbose output can be enabled by providing the -v
4+
flag.
5+
6+
## Source changes
7+
8+
* [Don't always use verbose output when running on bazel.](https://github.com/material-foundation/kokoro-ios-runner/commit/845084d9b1c06a67e87270beb91569dafda1c3aa) (Jeff Verkoeyen)
9+
110
# 4.2.0
211

312
Local runs of the bazel.sh script now only run against the currently selected Xcode install. This should hopefully alleviate flakiness on local builds.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fi
1818

1919
pushd .kokoro-ios-runner
2020
git fetch
21-
git checkout v4.2.0
21+
git checkout v4.2.1
2222
popd
2323

2424
./.kokoro-ios-runner/xcodebuild.sh "MotionInterchange/MotionInterchange.xcodeproj" MotionInterchange "iPhone SE"
@@ -44,7 +44,7 @@ fi
4444

4545
pushd .kokoro-ios-runner
4646
git fetch
47-
git checkout v4.2.0
47+
git checkout v4.2.1
4848
popd
4949

5050
./.kokoro-ios-runner/bazel.sh test //:CatalogByConventionTests --min-xcode-version 8.0.0

bazel.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
# Fail on any error.
4040
set -e
4141

42-
script_version="v4.2.0"
42+
script_version="v4.2.1"
4343
echo "$(basename $0) version $script_version"
4444

4545
version_as_number() {
@@ -76,9 +76,6 @@ set -- "${POSITIONAL[@]}" # restore positional parameters
7676
if [ -n "$KOKORO_BUILD_NUMBER" ]; then
7777
# Move into our cloned repo
7878
cd github/repo
79-
80-
# Always enable verbose output on kokoro runs.
81-
VERBOSE_OUTPUT=1
8279
fi
8380

8481
if [ -n "$VERBOSE_OUTPUT" ]; then

xcodebuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ run() {
9898
fi
9999
}
100100

101-
script_version="v4.2.0"
101+
script_version="v4.2.1"
102102
echo "build_and_test version $script_version"
103103

104104
project="$1"

0 commit comments

Comments
 (0)