mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
The ABSL benchmark is broken after updating our image to ubuntu jammy. This is due to the C++ versioning being incompatible for some types used in ABSL with the new ubuntu image's copiler. The image uses a very old image of bazel and a very old commit of bazel. In addition, ABSL has upgraded to C++14. Thus, we could: - Go back to the previous Ubuntu version. - Hand jam an older gcc version into the newer ubuntu image. - Just update everything to the latest state of the world. This CL chooses the last option. This means that we can't compare our new data from the data from before the test broke. But the test has been broken for about a month anyway and it will still give us a trendline going forward. PiperOrigin-RevId: 684626218