Skip to content

Commit

Permalink
Merge pull request chipsalliance#2223 from hzeller/feature-20240804-d…
Browse files Browse the repository at this point in the history
…ocument-bzlmod

Document why we're stuck in some older versions in bzlmod
  • Loading branch information
hzeller authored Aug 4, 2024
2 parents c11e607 + 7fc4c1b commit 12d887a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/verible-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ jobs:
ls -lah artifact
- name: Deploy release and assets
uses: svenstaro/upload-release-action@v2.9.0
uses: svenstaro/upload-release-action@2.9.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: artifact/verible*.{tar.gz,zip}
Expand Down
4 changes: 4 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ flex.repository(
use_repo(flex, "flex")
register_toolchains("@flex//:toolchain")

# abseil-cpp can not be updated beyond the following curringly, as newer
# ones use googletest that is not compatible with bazel 6 anymore.
bazel_dep(name = "abseil-cpp", version = "20240116.2", repo_name="com_google_absl")
single_version_override(
module_name = "abseil-cpp",
Expand All @@ -60,6 +62,8 @@ single_version_override(
)

bazel_dep(name = "re2", version = "2023-09-01", repo_name="com_googlesource_code_re2")

# Newer versions require bazel 7, so this is the last we can use currently.
bazel_dep(name = "googletest", version = "1.14.0.bcr.1", repo_name="com_google_googletest")
bazel_dep(name = "protobuf", version = "26.0", repo_name="com_google_protobuf")
bazel_dep(name = "nlohmann_json", version = "3.11.3", repo_name="jsonhpp")
Expand Down

0 comments on commit 12d887a

Please sign in to comment.