This repository was archived by the owner on Jul 31, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed
Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 1+ language : cpp
2+ os : linux
3+ dist : trusty
4+ sudo : false
5+
6+ before_install :
7+ - wget https://github.com/bazelbuild/bazel/releases/download/0.8.1/bazel-0.8.1-installer-linux-x86_64.sh
8+ - chmod +x bazel-0.8.1-installer-linux-x86_64.sh
9+ - ./bazel-0.8.1-installer-linux-x86_64.sh --user
10+
11+ script :
12+ - bazel build -k //...
13+ - bazel test -k //...
Original file line number Diff line number Diff line change @@ -32,4 +32,4 @@ void BM_Random64(benchmark::State& state) {
3232BENCHMARK (BM_Random64);
3333
3434} // namespace
35- BENCHMARK_MAIN ()
35+ BENCHMARK_MAIN ();
Original file line number Diff line number Diff line change @@ -90,4 +90,4 @@ void BM_StartEndSpanAndSetStatus(benchmark::State& state) {
9090BENCHMARK (BM_StartEndSpanAndSetStatus);
9191
9292} // namespace
93- BENCHMARK_MAIN ()
93+ BENCHMARK_MAIN ();
Original file line number Diff line number Diff line change @@ -82,4 +82,4 @@ BENCHMARK(BM_SpanIdCopyTo);
8282} // namespace
8383} // namespace trace
8484} // namespace opencensus
85- BENCHMARK_MAIN ()
85+ BENCHMARK_MAIN ();
You can’t perform that action at this time.
0 commit comments