Skip to content

Commit

Permalink
e2e: add missing dependencies
Browse files Browse the repository at this point in the history
this fixes e2e run for 6.4.0
  • Loading branch information
mgred committed Dec 24, 2023
1 parent 68cf39d commit 2f5c218
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions e2e/WORKSPACE
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
workspace(name = "sqids_bazel_e2e")

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "bazel_skylib",
sha256 = "cd55a062e763b9349921f0f5db8c3933288dc8ba4f76dd9416aac68acee3cb94",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz",
],
)

load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")

bazel_skylib_workspace()

local_repository(
name = "sqids_bazel",
path = "..",
Expand Down

0 comments on commit 2f5c218

Please sign in to comment.