-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix_show_field
- Loading branch information
Showing
807 changed files
with
57,356 additions
and
28,491 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
startup --host_jvm_args=-Xmx8g | ||
startup --unlimit_coredumps | ||
|
||
run --color=yes | ||
build:release --workspace_status_command=./build/print-workspace-status.sh --stamp | ||
build:release --config=ci | ||
build --incompatible_strict_action_env --incompatible_enable_cc_toolchain_resolution | ||
build:ci --remote_cache=http://172.16.4.3:8084/tidb | ||
test:ci --verbose_failures | ||
test:ci --test_timeout=180 | ||
test:ci --test_env=GO_TEST_WRAP_TESTV=1 --test_verbose_timeout_warnings | ||
test:ci --remote_cache=http://172.16.4.3:8084/tidb | ||
test:ci --test_env=TZ=Asia/Shanghai --test_output=errors --experimental_ui_max_stdouterr_bytes=104857600 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
load("@bazel_gazelle//:def.bzl", "gazelle") | ||
|
||
# gazelle:proto disable_global | ||
# gazelle:prefix github.com/pingcap/tidb | ||
# gazelle:exclude tidb-binlog/proto/proto | ||
# gazelle:exclude plugin/conn_ip_example | ||
# gazelle:exclude build/linter/staticcheck | ||
gazelle(name = "gazelle") | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
xcode_version( | ||
name = "xcode_version", | ||
version = "10.0", | ||
) | ||
|
||
filegroup( | ||
name = "package-srcs", | ||
srcs = glob( | ||
["**"], | ||
exclude = [ | ||
"bazel-*/**", | ||
".git/**", | ||
".idea/**", | ||
], | ||
), | ||
tags = ["automanaged"], | ||
visibility = ["//visibility:private"], | ||
) |
Oops, something went wrong.