Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.

Commit bc0b026

Browse files
authored
Adapt to latest @graknlabs_bazel_distribution (#55)
## What is the goal of this PR? Newest changes in `bazel-distribution` (typedb/bazel-distribution#181) are backwards-incompatible. ## What are the changes implemented in this PR? - Bump `@graknlabs_build_tools`'s version - Uses workspace macros from most recent `bazel-distribution` version
1 parent fe1647d commit bc0b026

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

WORKSPACE

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,20 @@ load("@graknlabs_build_tools//bazel:dependencies.bzl", "bazel_rules_docker")
132132
bazel_rules_docker()
133133

134134

135-
# TODO: rename the macro we load here to deploy_github_dependencies
136-
load("@graknlabs_bazel_distribution//github:dependencies.bzl", "github_dependencies_for_deployment")
137-
github_dependencies_for_deployment()
135+
##################################
136+
# Load Distribution dependencies #
137+
##################################
138+
139+
load("@graknlabs_bazel_distribution//github:dependencies.bzl", "tcnksm_ghr")
140+
tcnksm_ghr()
141+
142+
load("@graknlabs_bazel_distribution//common:dependencies.bzl", "bazelbuild_rules_pkg")
143+
bazelbuild_rules_pkg()
138144

139145
#####################################
140146
# Load Bazel common workspace rules #
141147
#####################################
142148

143149
# TODO: Figure out why this cannot be loaded at earlier at the top of the file
144150
load("@com_github_google_bazel_common//:workspace_defs.bzl", "google_common_workspace_rules")
145-
google_common_workspace_rules()
151+
google_common_workspace_rules()

dependencies/graknlabs/dependencies.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def graknlabs_build_tools():
2222
git_repository(
2323
name = "graknlabs_build_tools",
2424
remote = "https://github.com/graknlabs/build-tools",
25-
commit = "a5dabc91ac4031aa80312bab4c4f7c4971aaba26", # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_build_tools
25+
commit = "d909d8401650c404d6a56081297235e47783005e", # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_build_tools
2626
)
2727

2828
def graknlabs_grakn_core():

0 commit comments

Comments
 (0)