Skip to content

Commit a4c1adc

Browse files
committed
fix: replace skylib with bazel-lib
1 parent d07f043 commit a4c1adc

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ jobs:
2828
{"bazelversion": "6.4.0", "os": "windows-latest"},
2929
{"bazelversion": "6.4.0", folder: "."},
3030
{"bazelversion": "6.4.0", bzlmodEnabled: true},
31-
{folder: "e2e/conflicting_toolchains", bzlmodEnabled: false},
31+
{folder: "e2e/conflicting_toolchains", bzlmodEnabled: false}
3232
]

e2e/headers/WORKSPACE.bazel

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ load("@rules_nodejs//nodejs:repositories.bzl", "nodejs_register_toolchains")
1010
nodejs_register_toolchains(include_headers = True)
1111

1212
http_archive(
13-
name = "bazel_skylib",
14-
sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f",
15-
urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz"],
13+
name = "bazel_lib",
14+
sha256 = "46960e9fa6c9352d883768280951ac388dba8cb9ff0256182fb77925eae2b6ac",
15+
strip_prefix = "bazel-lib-3.0.0-beta.1",
16+
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.0.0-beta.1/bazel-lib-v3.0.0-beta.1.tar.gz",
1617
)

e2e/nodejs_host/WORKSPACE.bazel

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ nodejs_register_toolchains(
3737
)
3838

3939
http_archive(
40-
name = "bazel_skylib",
41-
sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f",
42-
urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz"],
40+
name = "bazel_lib",
41+
sha256 = "46960e9fa6c9352d883768280951ac388dba8cb9ff0256182fb77925eae2b6ac",
42+
strip_prefix = "bazel-lib-3.0.0-beta.1",
43+
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.0.0-beta.1/bazel-lib-v3.0.0-beta.1.tar.gz",
4344
)

0 commit comments

Comments
 (0)