Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of Change
After updating all the skia versions, agents and Dpcker files, we ended up on Debian 10 which uses GLIBC 2.31 which broke the support for RHEL 8.
This PR drops down the version of the build Docker to Debian 10 which is also still under ELTS.
One reason we went to Debian 11 was the depot_tools required Python 3.8, and Debian 10 only went up to Python 3.7. However, I found that there was just a single file that had 3.8 requirements and that was just because they wrote it using a new mechanism. There was a slightly different way in 3.7, so I opened an issue https://issues.chromium.org/issues/403485632 and then also a https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/6355868. Once (hopefully) the CL gets merged, I can remove the workaround in the cake files.
Bugs Fixed