Skip to content

Commit

Permalink
fix bazel
Browse files Browse the repository at this point in the history
  • Loading branch information
D3Hunter committed Mar 6, 2023
1 parent f0c7c97 commit 73a08d7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 84 deletions.
2 changes: 1 addition & 1 deletion br/cmd/tidb-lightning-ctl/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ go_library(
"//br/pkg/lightning/checkpoints",
"//br/pkg/lightning/common",
"//br/pkg/lightning/config",
"//br/pkg/lightning/importer:restore",
"//br/pkg/lightning/importer",
"//br/pkg/lightning/tikv",
"@com_github_pingcap_errors//:errors",
],
Expand Down
2 changes: 1 addition & 1 deletion br/pkg/lightning/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ go_library(
"//br/pkg/lightning/common",
"//br/pkg/lightning/config",
"//br/pkg/lightning/glue",
"//br/pkg/lightning/importer:restore",
"//br/pkg/lightning/importer",
"//br/pkg/lightning/log",
"//br/pkg/lightning/metric",
"//br/pkg/lightning/mydump",
Expand Down
82 changes: 1 addition & 81 deletions br/pkg/lightning/importer/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")

go_library(
name = "restore",
name = "importer",
srcs = [
"check_info.go",
"check_template.go",
Expand Down Expand Up @@ -91,86 +91,6 @@ go_library(
],
)

go_test(
name = "restore_test",
timeout = "short",
srcs = [
"check_info_test.go",
"checksum_test.go",
"chunk_restore_test.go",
"get_pre_info_test.go",
"meta_manager_test.go",
"precheck_impl_test.go",
"precheck_test.go",
"restore_schema_test.go",
"restore_test.go",
"table_restore_test.go",
"tidb_test.go",
],
embed = [":restore"],
flaky = True,
deps = [
"//br/pkg/lightning/backend",
"//br/pkg/lightning/backend/kv",
"//br/pkg/lightning/backend/noop",
"//br/pkg/lightning/backend/tidb",
"//br/pkg/lightning/checkpoints",
"//br/pkg/lightning/common",
"//br/pkg/lightning/config",
"//br/pkg/lightning/errormanager",
"//br/pkg/lightning/glue",
"//br/pkg/lightning/importer/mock",
"//br/pkg/lightning/importer/opts",
"//br/pkg/lightning/log",
"//br/pkg/lightning/metric",
"//br/pkg/lightning/mydump",
"//br/pkg/lightning/verification",
"//br/pkg/lightning/web",
"//br/pkg/lightning/worker",
"//br/pkg/mock",
"//br/pkg/storage",
"//br/pkg/streamhelper",
"//br/pkg/version/build",
"//ddl",
"//errno",
"//kv",
"//meta",
"//meta/autoid",
"//parser",
"//parser/ast",
"//parser/model",
"//parser/mysql",
"//store/mockstore",
"//store/pdtypes",
"//table/tables",
"//types",
"//util",
"//util/mock",
"//util/promutil",
"//util/table-filter",
"//util/table-router",
"@com_github_data_dog_go_sqlmock//:go-sqlmock",
"@com_github_docker_go_units//:go-units",
"@com_github_go_sql_driver_mysql//:mysql",
"@com_github_golang_mock//gomock",
"@com_github_google_uuid//:uuid",
"@com_github_pingcap_errors//:errors",
"@com_github_pingcap_failpoint//:failpoint",
"@com_github_pingcap_kvproto//pkg/metapb",
"@com_github_pingcap_tipb//go-tipb",
"@com_github_stretchr_testify//require",
"@com_github_stretchr_testify//suite",
"@com_github_tikv_client_go_v2//oracle",
"@com_github_tikv_pd_client//:client",
"@com_github_xitongsys_parquet_go//writer",
"@com_github_xitongsys_parquet_go_source//buffer",
"@io_etcd_go_etcd_client_v3//:client",
"@io_etcd_go_etcd_tests_v3//integration",
"@org_uber_go_atomic//:atomic",
"@org_uber_go_zap//:zap",
],
)

go_test(
name = "importer_test",
srcs = [
Expand Down
2 changes: 1 addition & 1 deletion br/pkg/lightning/importer/mock/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ go_test(
embed = [":mock"],
flaky = True,
deps = [
"//br/pkg/lightning/importer:restore",
"//br/pkg/lightning/importer",
"//parser/model",
"@com_github_stretchr_testify//require",
],
Expand Down

0 comments on commit 73a08d7

Please sign in to comment.