Skip to content

Commit

Permalink
test(bazel): Add another archive override with dev_dependency=True
Browse files Browse the repository at this point in the history
This is to demonstrate that development dependencies are not correctly
detected if they stem from an archive override. An upcoming commit will
fix that.

Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
  • Loading branch information
sschuberth committed Aug 26, 2024
1 parent 4e887f2 commit 32dfe21
Show file tree
Hide file tree
Showing 2 changed files with 585 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,12 @@ archive_override(
strip_prefix = "rules_cuda-v0.1.2",
urls = ["https://github.com/bazel-contrib/rules_cuda/releases/download/v0.1.2/rules_cuda-v0.1.2.tar.gz"],
)

bazel_dep(name = "nanopb", version = "0.4.9", dev_dependency=True)

archive_override(
module_name = "nanopb",
urls = ["https://github.com/nanopb/nanopb/archive/e34dfae6f1aeb87cbe1c05a8fb96f5b9cb1034f6.zip"],
integrity = "sha256-a+rlc9aR9sNF8MfourU1VFf3foRRZo+qlmXfxY0se6s=",
strip_prefix = "nanopb-e34dfae6f1aeb87cbe1c05a8fb96f5b9cb1034f6",
)
Loading

0 comments on commit 32dfe21

Please sign in to comment.