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

Releases: material-foundation/kokoro-ios-runner

v4.3.0

06 Apr 03:08
Compare
Choose a tag to compare

Add support for running bazel against a specific Xcode version.

Source changes

v4.2.2

06 Apr 01:25
Compare
Choose a tag to compare

Bazel builds now ignore duplicate installations of Xcode.

Source changes

v4.2.1

05 Apr 21:39
Compare
Choose a tag to compare

Bazel builds will no longer force verbose output. Verbose output can be enabled by providing the -v
flag.

Source changes

v4.2.0

13 Dec 19:16
Compare
Choose a tag to compare

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

Source changes

v4.1.1

17 Nov 18:39
Compare
Choose a tag to compare

This patch release fixes a bug in bazel argument expansion affecting arguments like
"--ios_simulator_device=iPad Pro (12.9-inch)".

Source changes

v4.1.0

16 Nov 19:27
Compare
Choose a tag to compare

This minor release introduces support for passing arbitrary flags to bazel invocations.

New features

Any unrecognized arguments passed to bazel.sh will now be passed along to the bazel invocation. This
can be used to invoke the build against multiple architectures. For example:

./.kokoro-ios-runner/bazel.sh test //components/... \
    --min-xcode-version 8.2 \
    --ios_minimum_os=8.0 \
    --ios_multi_cpus=i386,x86_64

Source changes

v4.0.0

16 Nov 17:02
Compare
Choose a tag to compare

This major release introduces support for configuring bazel output verbosity.

Breaking changes

The minimum Xcode version must now be provided as a flag.

// Old invocations:
bazel.sh build //:CatalogByConvention 8.2

// New invocations:
bazel.sh build //:CatalogByConvention --min-xcode-version 8.2

New features

Local bazel builds no longer build with verbose output. To enable verbose output, pass the -v flag
to the bazel.sh script.

Source changes

API changes

bazel.sh now supports a -v argument for enabling verbosity on local builds. Verbose output is
always enabled on kokoro builds.

v3.2.0

06 Nov 20:45
Compare
Choose a tag to compare

This minor release increases the amount of logging generated during bazel runs.

Source changes

v3.1.1

19 Oct 19:51
Compare
Choose a tag to compare

This patch release fixes a bug on local runs of the bazel scripts where the simulator would crash
between different Xcode versions.

Source changes

Non-source changes

v3.1.0

18 Oct 17:38
Compare
Choose a tag to compare

This minor release adds support for specifying a minimum Xcode version and improved support for unit
test runs when using bazel.sh.

New features

  • It's now possible to specify a minimum Xcode version when running bazel commands.

Source changes