Skip to content

Commit 5cd3a53

Browse files
vmaxhaikalpribadi
authored andcommitted
Adapt to latest @graknlabs_bazel_distribution (#33)
## 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 ff5a323 commit 5cd3a53

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

WORKSPACE

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,11 @@ graknlabs_graql_maven_dependencies()
131131
# Load Distribution dependencies #
132132
##################################
133133

134-
# TODO: rename the macro we load here to deploy_github_dependencies
135-
load("@graknlabs_bazel_distribution//github:dependencies.bzl", "github_dependencies_for_deployment")
136-
github_dependencies_for_deployment()
134+
load("@graknlabs_bazel_distribution//github:dependencies.bzl", "tcnksm_ghr")
135+
tcnksm_ghr()
137136

137+
load("@graknlabs_bazel_distribution//common:dependencies.bzl", "bazelbuild_rules_pkg")
138+
bazelbuild_rules_pkg()
138139

139140
#####################################
140141
# Load Bazel common workspace rules #
@@ -148,4 +149,4 @@ google_common_workspace_rules()
148149
load("@graknlabs_bazel_distribution//common:rules.bzl", "workspace_refs")
149150
workspace_refs(
150151
name = "graknlabs_client_java_workspace_refs"
151-
)
152+
)

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)