From 1a2ec3d1ffacf3c462b69c2bbac91111d1752d21 Mon Sep 17 00:00:00 2001 From: cloudhan Date: Tue, 7 Nov 2023 21:48:40 +0800 Subject: [PATCH] Disallow autoupdate nccl (#193) * Disallow autoupdate nccl and nccl-tests digests * Revert "chore(deps): update nccl-tests digest to 6c46206 (#172)" This reverts commit 9383a92fffd1576ef9bebea347840d0676fa49e4. * Revert "chore(deps): update nccl digest to 4365458 (#171)" This reverts commit 3c70b8eec2d918d5493f2c1dadb1107d76600ac3. --- examples/WORKSPACE.bazel | 12 ++++++------ renovate.json | 6 ++++++ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/examples/WORKSPACE.bazel b/examples/WORKSPACE.bazel index daeabadd..7b6b5cb3 100644 --- a/examples/WORKSPACE.bazel +++ b/examples/WORKSPACE.bazel @@ -27,9 +27,9 @@ http_archive( name = "nccl", add_prefix = "nccl", build_file = "@rules_cuda_examples//nccl:nccl.BUILD", - sha256 = "0de8aed51bf95c96c14bc801ba840eb5b5df527e7105b1f42a58ad5d4d617678", - strip_prefix = "nccl-4365458757e4107ecbf629b2fd6e0e19a5d237c2", - urls = ["https://github.com/nvidia/nccl/archive/4365458757e4107ecbf629b2fd6e0e19a5d237c2.tar.gz"], + sha256 = "83b299cfc2dfe63887dadf3590b3ac2b8b2fd68ec5515b6878774eda39a697d2", + strip_prefix = "nccl-9814c75eea18fc7374cde884592233b6b7dc055b", + urls = ["https://github.com/nvidia/nccl/archive/9814c75eea18fc7374cde884592233b6b7dc055b.tar.gz"], ) http_archive( @@ -41,7 +41,7 @@ http_archive( "-p1", ], patches = ["@rules_cuda_examples//nccl:nccl-tests-clang.patch"], - sha256 = "fe0bdc0fdfba75a9326b32381ce486b99aa5e6189181fbf92baa4f6153961c3f", - strip_prefix = "nccl-tests-6c46206a478203b6453035fe0d40dc6418acd089", - urls = ["https://github.com/nvidia/nccl-tests/archive/6c46206a478203b6453035fe0d40dc6418acd089.tar.gz"], + sha256 = "946adb84f63aec66aea7aab9739d41df81c24f783e85fba6328ba243cfc057e0", + strip_prefix = "nccl-tests-1a5f551ffd6e3271982b03a9d5653a3f6ba545fa", + urls = ["https://github.com/nvidia/nccl-tests/archive/1a5f551ffd6e3271982b03a9d5653a3f6ba545fa.tar.gz"], ) diff --git a/renovate.json b/renovate.json index 1eed7db3..e94374d8 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,11 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:base"], "ignorePaths": ["MODULE.bazel"], + "packageRules": [ + { + "matchManagers": ["bazel", "bazel-module"], + "excludePackageNames": ["nccl", "nccl-tests"] + } + ], "schedule": ["on the first day of the month"] }