Skip to content

Commit fc0a191

Browse files
bazelize
1 parent 3801ebf commit fc0a191

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.factory/automation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ build:
4646
image: vaticle-ubuntu-22.04
4747
command: |
4848
bazel run @vaticle_dependencies//tool/bazelinstall:remote_cache_setup.sh
49-
bazel test //rust:typeql_rust_test --test_output=errors
49+
bazel test //rust:typeql_unit_tests --test_output=errors
5050
bazel test //rust/tests/behaviour:test_behaviour --test_output=errors
5151
deploy-crate-snapshot:
5252
filter:

dependencies/vaticle/repositories.bzl

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
77
def vaticle_dependencies():
88
git_repository(
99
name = "vaticle_dependencies",
10-
remote = "https://github.com/vaticle/dependencies",
11-
commit = "8ed4fd2b3bfcfbeb572322364e4b3fb8b77064e0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
10+
remote = "https://github.com/dmitrii-ubskii/vaticle-dependencies",
11+
commit = "b13ccddfddcac1d56a029d98e3893f74b267c5ae", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
1212
)
1313

1414
def vaticle_typedb_behaviour():

rust/BUILD

+5-1
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,12 @@ rust_library(
3535
)
3636

3737
rust_test(
38-
name = "typeql_rust_test",
38+
name = "typeql_unit_tests",
3939
crate = ":typeql",
40+
deps = [
41+
"@crates//:syn",
42+
"@crates//:proc-macro2",
43+
],
4044
)
4145

4246
assemble_crate(

0 commit comments

Comments
 (0)