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

Commit

Permalink
Fix CI on master (#81)
Browse files Browse the repository at this point in the history
## What is the goal of this PR?
Fixes CI on `master` by:
- upgrading to latest `@graknlabs_console` to include typedb/typedb-console#16
- always running the build remotely
  • Loading branch information
Soroush Saffari authored and vmax committed Nov 8, 2019
1 parent 1d4c41e commit 89a71c9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- install-bazel-linux-rbe
- checkout
- run-bazel-rbe:
command: bazel test //:test-integration --test_output=streamed --spawn_strategy=local
command: bazel test //:test-integration --test_output=streamed

deploy-npm-snapshot:
machine: true
Expand Down
5 changes: 3 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ workspace(name = "graknlabs_client_nodejs")
# Grakn Labs dependencies #
###########################

load("//dependencies/graknlabs:dependencies.bzl", "graknlabs_grakn_core", "graknlabs_build_tools", "graknlabs_protocol")
load("//dependencies/graknlabs:dependencies.bzl", "graknlabs_grakn_core", "graknlabs_build_tools", "graknlabs_protocol", "graknlabs_console")
graknlabs_grakn_core()
graknlabs_build_tools()
graknlabs_protocol()
graknlabs_console()

load("@graknlabs_build_tools//distribution:dependencies.bzl", "graknlabs_bazel_distribution")
graknlabs_bazel_distribution()
Expand Down Expand Up @@ -94,7 +95,7 @@ node_grpc_compile()
################################

load("@graknlabs_grakn_core//dependencies/graknlabs:dependencies.bzl",
"graknlabs_graql", "graknlabs_common", "graknlabs_client_java", "graknlabs_console", "graknlabs_benchmark")
"graknlabs_graql", "graknlabs_common", "graknlabs_client_java", "graknlabs_benchmark")
graknlabs_graql()
graknlabs_common()
graknlabs_client_java()
Expand Down
7 changes: 7 additions & 0 deletions dependencies/graknlabs/dependencies.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,10 @@ def graknlabs_protocol():
remote = "https://github.com/graknlabs/protocol",
commit = "246139d83ad8d3b5b3f37e2bf26d3b56fad4d8bc" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_protocol
)

def graknlabs_console():
git_repository(
name = "graknlabs_console",
remote = "https://github.com/graknlabs/console",
commit = "19fe1b233cf7471093c507568c34b48944f7c66b" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_protocol
)

0 comments on commit 89a71c9

Please sign in to comment.