[6.6.0] Match postsubmit jobs with presubmit#28193
Merged
meteorcloudy merged 1 commit intobazelbuild:release-6.6.0from Jan 9, 2026
Merged
[6.6.0] Match postsubmit jobs with presubmit#28193meteorcloudy merged 1 commit intobazelbuild:release-6.6.0from
meteorcloudy merged 1 commit intobazelbuild:release-6.6.0from
Conversation
Fixes postsubmit job failures after merging bazelbuild#27463 by aligning the `.bazelci` postsubmit jobs with `.bazelci/presubmit.yml`. Specifically: - Disabled Android setup and test targets due to infrastructure changes (including but not limited to bazelbuild/continuous-integration#2408). - Updated the `ubuntu2004` jobs to `ubuntu2004_java11` (not that it should matter after the `*_for_testing` repo fix from bazelbuild#27463). - Updated the `xcode_version` of `macos` jobs. Contains other touch-ups to synchronize build images, build flags, test flags, and test targets, as well as to make minor formatting changes. Produced most changes via: `vimdiff .bazelci/p{re,ost}submit.yml`. The remaining differences are: - No sharding in postsubmit jobs. - Setting `--noremote_accept_cached` in postsubmit jobs - Including `include_json_profile` blocks in postsubmit jobs. - The `kythe_ubuntu2004` job sets `index_upload_gcs` to `False` in presubmit and `True` in postsubmit. - The `docs_ubuntu1804` job only exists in presubmit. Part of bazelbuild#28117.
This was referenced Jan 8, 2026
There was a problem hiding this comment.
Code Review
This pull request aligns postsubmit jobs with presubmit configurations to fix CI failures. Key changes include disabling Android-related setups, updating platform versions and Xcode, and synchronizing build flags and test targets across jobs. The changes are thorough and correctly implement the described alignment, including fixing some pre-existing YAML syntax errors.
meteorcloudy
approved these changes
Jan 9, 2026
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes postsubmit job failures after merging #27463 by aligning the
.bazelcipostsubmit jobs with.bazelci/presubmit.yml. Specifically:Disabled Android setup and test targets due to infrastructure changes (including but not limited to Update Android build tools to 36.1.0 and remove old versions continuous-integration#2408).
Updated the
ubuntu2004jobs toubuntu2004_java11(not that it should matter after the*_for_testingrepo fix from [6.6.0] Fixes for using recent Xcodes and macOS 26 #27463).Updated the
xcode_versionofmacosjobs.Contains other touch-ups to synchronize build images, build flags, test flags, and test targets, as well as to make minor formatting changes.
Produced most changes via:
vimdiff .bazelci/p{re,ost}submit.yml. The remaining differences are:No sharding in postsubmit jobs.
Setting
--noremote_accept_cachedin postsubmit jobsIncluding
include_json_profileblocks in postsubmit jobs.The
kythe_ubuntu2004job setsindex_upload_gcstoFalsein presubmit andTruein postsubmit.The
docs_ubuntu1804job only exists in presubmit.Part of #28177.