File tree 4 files changed +6
-5
lines changed
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ matrix:
17
17
dist : trusty
18
18
sudo : required
19
19
env :
20
- - BAZEL=0.13.0 SWIFT_VERSION=4.1.2 TARGETS="//examples/... -//examples/apple/..."
20
+ - BAZEL=0.14.1 SWIFT_VERSION=4.1.2 TARGETS="//examples/... -//examples/apple/..."
21
21
- os : osx
22
22
osx_image : xcode9.3
23
23
env :
24
- - BAZEL=0.13.0 TARGETS=//examples/...
24
+ - BAZEL=0.14.1 TARGETS=//examples/...
25
25
26
26
before_install :
27
27
- .travis/install.sh
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ function install_bazel() {
66
66
chmod +x " $HOME /bin/bazel"
67
67
else
68
68
wget -O install.sh \
69
- " https://github.com/bazelbuild/bazel/releases/download/${VERSION} /bazel-${VERSION} -without-jdk- installer-${OS} -x86_64.sh"
69
+ " https://github.com/bazelbuild/bazel/releases/download/${VERSION} /bazel-${VERSION} -installer-${OS} -x86_64.sh"
70
70
chmod +x install.sh
71
71
./install.sh --user
72
72
rm -f install.sh
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ repository.
23
23
24
24
## Compatibility
25
25
26
- These rules have been verified to work with ** Bazel 0.13.0 .**
26
+ These rules have been verified to work with ** Bazel 0.14.1 .**
27
27
28
28
## Quick Setup
29
29
Original file line number Diff line number Diff line change @@ -92,7 +92,8 @@ def _swift_binary_test_impl(ctx):
92
92
# TODO(b/70228246): Also support mostly-static and fully-dynamic modes.
93
93
if toolchain .cc_toolchain_info :
94
94
cpp_toolchain = find_cpp_toolchain (ctx )
95
- if hasattr (cpp_toolchain , "link_options_do_not_use" ):
95
+ if (hasattr (cpp_toolchain , "link_options_do_not_use" ) and
96
+ hasattr (cc_common , "mostly_static_link_options" )):
96
97
# We only do this for non-Xcode toolchains at this time.
97
98
features = ctx .features
98
99
link_args .add (find_cpp_toolchain (ctx ).link_options_do_not_use )
You can’t perform that action at this time.
0 commit comments