Deduplicate urls parsed to reduce crawl requests#14763
Closed
niyas-sait wants to merge 2 commits intobazelbuild:masterfrom
Closed
Deduplicate urls parsed to reduce crawl requests#14763niyas-sait wants to merge 2 commits intobazelbuild:masterfrom
niyas-sait wants to merge 2 commits intobazelbuild:masterfrom
Conversation
Member
|
@nsait-linaro Can you rebase with the master branch? I guess test failure is already fixed at HEAD. |
d85e2f4 to
34dbb5a
Compare
meteorcloudy
approved these changes
Feb 9, 2022
niyas-sait
added a commit
to niyas-sait/bazel
that referenced
this pull request
Feb 11, 2022
bazelbuild#14700 added couple more URLs to fetch JDK package and seems to be causing some infrastructure as discussed in bazelbuild#14700. This patch workaround the issue by removing the duplicated URLs and reduce the crawl request. Closes bazelbuild#14763. PiperOrigin-RevId: 427464876
meteorcloudy
pushed a commit
that referenced
this pull request
Feb 14, 2022
* Enable native support for Windows on arm64 (Part 1) Contains following changes to third_party: - Extended def_parser to handle ARM64 binaries - Add grpc patch to workaround build issues Closes: #14689 Partial commit for third_party/*, see #14689. Signed-off-by: Yun Peng <pcloudy@google.com> * Enable native support for Windows on arm64 This PR will enable cross-compilation of Bazel binaries for win/arm64 from win/x64 `bazel build -c opt --cpu=x64_arm64_windows //src:bazel.exe` Generated bazel executable can be used for native compilation in win/arm64 `bazel.exe build //main:hello-world` Following changes are included - Add win/arm64 JDK 17 - Fix AutoCpuConverter.java to identify win/arm64 CPU - Extend build_bazel_binaries.yml to cross-compile for win/arm64 - Fix msvc toolchain to look for tools in HostX86 directory as well - add clang-cl support for windows/arm64 host - Extend host_windows config to handle windows x64 and arm64 hosts. Closes #14340. PiperOrigin-RevId: 425919351 * [windows/arm64] Add missing JDK toolchain for java build Extend configurations to add JDK 11 and 17 for windows/arm64 platforms. This should fix the Java builds on windows/arm64 Closes #14700. PiperOrigin-RevId: 427737536 * add missing openjdk11_windows_arm64_archive * Deduplicate urls parsed to reduce crawl requests #14700 added couple more URLs to fetch JDK package and seems to be causing some infrastructure as discussed in #14700. This patch workaround the issue by removing the duplicated URLs and reduce the crawl request. Closes #14763. PiperOrigin-RevId: 427464876 * fix jdk_http_archives.tmpl
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.
#14700 added couple more URLs to fetch JDK package and seems to be causing some infrastructure as discussed in #14700.
This patch workaround the issue by removing the duplicated URLs and reduce the crawl request.