aboutsummaryrefslogtreecommitdiffhomepage
path: root/.bazelci
Commit message (Collapse)AuthorAge
* Explicitly cast ByteBuffer in clear() call to Buffer.Gravatar Tobias Werth2018-08-14
| | | | | | | | | | | | | This works around the following error: java.lang.NoSuchMethodError: java.nio.ByteBuffer.clear()Ljava/nio/ByteBuffer; at com.google.devtools.build.lib.profiler.Profiler$BinaryFormatWriter.run(Profiler.java:949) at java.lang.Thread.run(Thread.java:748) JDK 9 introduced an overloaded methods with covariant return type. Closes #5886. PiperOrigin-RevId: 208642556
* Enable the new rbe_ubuntu1604 platform for Bazel's CI.Gravatar philwo2018-08-07
| | | | | | | | | | This will test that we can correctly build Bazel via RBE on each pre- and postsubmit. It's also required for the downstream pipeline to work again. I've tested this change via a GitHub PR here: https://buildkite.com/bazel/bazel-bazel-github-presubmit/builds/333 RELNOTES: None. PiperOrigin-RevId: 207675545
* Automated rollback of commit 44c53dcf661ef7c0fdf484c26d3eedf7d2be7593.Gravatar jingwen2018-07-16
| | | | | | | | | | | | | | | | | | | | *** Reason for rollback *** Failing on Windows: https://buildkite.com/bazel/bazel-bazel/builds/3409#825fcb71-bf05-4e59-98a3-1272957d6588 *** Original change description *** Add //examples/... to postsubmit CI pipeline While fixing https://github.com/bazelbuild/bazel/issues/3663, I figured that it'll be great to build_test all of the targets in //examples/..., on top of the Android ones. Tested manually on Ubuntu, macOS and Windows machines. Fixes https://github.com/bazelbuild/bazel/issues/3663 Closes #5108. PiperOrigin-RevId: 204800755
* Add //examples/... to postsubmit CI pipelineGravatar Jingwen Chen2018-07-16
| | | | | | | | | | | | While fixing https://github.com/bazelbuild/bazel/issues/3663, I figured that it'll be great to build_test all of the targets in //examples/..., on top of the Android ones. Tested manually on Ubuntu, macOS and Windows machines. Fixes https://github.com/bazelbuild/bazel/issues/3663 Closes #5108. PiperOrigin-RevId: 204785212
* Make spend_cpu_time more reliable by tracking time.Gravatar jmmv2018-07-12
| | | | | | | | | | | | | | | | | | | | | | First, make the function that wastes user time keep track of how much processor time has been used so far, and make the function that wastes system time track overall wall time. This is to minimize the number of "overhead" system calls, which can tamper with our measurements. Second, make the loop of the function that wastes user time more costly so that modern processors don't run it too fast. Otherwise, the overhead to track used time becomes significant in system time and makes our tests fail. This should fix the flakiness observed in our process-wrapper tests when run on the modern CPUs that the iMac Pros carry. Tested: I haven't been able to reproduce the flakiness. Running the spend_cpu_time binary by hand reports very accurate timings for both system and user time, even when pausing the program while it runs. RELNOTES: None. PiperOrigin-RevId: 204264910
* buildkite: re-enable determinism test on macOSGravatar buchgr2018-07-10
| | | | | RELNOTES: None PiperOrigin-RevId: 203931666
* buildkite: actually disable flaky testsGravatar buchgr2018-07-09
| | | | PiperOrigin-RevId: 203746935
* buildkite: disable flaky execution statistic tests on mac.Gravatar buchgr2018-07-09
| | | | | RELNOTES: None PiperOrigin-RevId: 203736658
* buildkite: enable android ndk tests on ubuntu 18.04Gravatar buchgr2018-06-27
| | | | | RELNOTES: None PiperOrigin-RevId: 202308240
* buildkite: disable determinism test on presubmitGravatar buchgr2018-06-26
| | | | | | | | | it consistently takes over 10 minutes for little benefit on presubmit. we'll continue to run it on postsubmit for every commit. RELNOTES: None PiperOrigin-RevId: 202094016
* re-enable android ndk test on postsubmitGravatar buchgr2018-06-25
| | | | | RELNOTES: None PiperOrigin-RevId: 201925111
* buildkite: test Bazel on Ubuntu 18.04Gravatar buchgr2018-06-22
| | | | | | | | I have added Buildkite workers running on Ubuntu 18.04 LTS. We should test Bazel on it. RELNOTES: None PiperOrigin-RevId: 201677421
* buildkite: increase test timeouts to 20 minutesGravatar buchgr2018-06-21
| | | | | | | | | | We are seeing quite a lot of test timeouts of very long running tests. This significantly adds to presubmit times as we retry failing tests up to 3 times. This change increases the test timeout from 15 to 20 minutes. RELNOTES: None PiperOrigin-RevId: 201514589
* Adding olaola to OWNERS on all remote libraries and tests.Gravatar olaola2018-03-22
| | | | | | TESTED=presubmit RELNOTES: None PiperOrigin-RevId: 190056498
* add Bazel's Buildkite configurationGravatar Jakob Buchgraber2018-03-22
Closes #4900. PiperOrigin-RevId: 190043375