File tree Expand file tree Collapse file tree 6 files changed +383
-196
lines changed Expand file tree Collapse file tree 6 files changed +383
-196
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
cirrus-ci_task :
3
3
container :
4
- image : l.gcr.io/google/bazel:2.1 .0
4
+ image : l.gcr.io/google/bazel:2.2 .0
5
5
cpu : 8
6
6
memory : 12G
7
7
configure_script :
Original file line number Diff line number Diff line change 6
6
7
7
travis_install () {
8
8
# Get bazel.
9
- wget https://github.com/bazelbuild/bazel/releases/download/2.1.1 /bazel-2.1.1 -installer-linux-x86_64.sh
10
- chmod +x bazel-2.1.1 -installer-linux-x86_64.sh
11
- ./bazel-2.1.1 -installer-linux-x86_64.sh --user
9
+ wget https://github.com/bazelbuild/bazel/releases/download/2.2.0 /bazel-2.2.0 -installer-linux-x86_64.sh
10
+ chmod +x bazel-2.2.0 -installer-linux-x86_64.sh
11
+ ./bazel-2.2.0 -installer-linux-x86_64.sh --user
12
12
echo ' build --jobs=4 --curses=no --verbose_failures' >> $HOME /.bazelrc
13
13
echo ' build --config=linux' >> $HOME /.bazelrc
14
14
echo " build --config=$CC " >> $HOME /.bazelrc
Original file line number Diff line number Diff line change @@ -623,6 +623,21 @@ static class options {
623
623
*/
624
624
any user_data;
625
625
}
626
+
627
+ /* *
628
+ * These options are experimental, so avoid writing code that depends on
629
+ * them. Options marked "experimental" may change their behaviour or go away
630
+ * entirely in the future, or may be renamed to something non-experimental
631
+ * if they become part of the supported API.
632
+ */
633
+ namespace experimental {
634
+ /* *
635
+ * Make public API functions thread-safe using a per-instance lock.
636
+ *
637
+ * Default: false.
638
+ */
639
+ bool thread_safety;
640
+ }
626
641
}
627
642
628
643
You can’t perform that action at this time.
0 commit comments