Skip to content

Commit d85a8bd

Browse files
authored
makefile: simplify code (pingcap#50054)
1 parent 6f32664 commit d85a8bd

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Makefile.common

+1-2
Original file line numberDiff line numberDiff line change
@@ -130,5 +130,4 @@ ifneq ("$(CI)", "")
130130
BAZEL_CMD_CONFIG := --config=ci --repository_cache=/home/jenkins/.tidb/tmp
131131
BAZEL_SYNC_CONFIG := --repository_cache=/home/jenkins/.tidb/tmp
132132
endif
133-
BAZEL_INSTRUMENTATION_FILTER_PACKAGE := go list ./...| sed 's/github.com\/pingcap\/tidb//g'
134-
BAZEL_INSTRUMENTATION_FILTER := --instrument_test_targets --instrumentation_filter='${BAZEL_INSTRUMENTATION_FILTER_PACKAGE}'
133+
BAZEL_INSTRUMENTATION_FILTER := --instrument_test_targets --instrumentation_filter=//pkg/...,//br/...,//dumpling/...

tests/realtikvtest/brietest/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ load("@io_bazel_rules_go//go:def.bzl", "go_test")
22

33
go_test(
44
name = "brietest_test",
5-
timeout = "moderate",
5+
timeout = "long",
66
srcs = [
77
"backup_restore_test.go",
88
"binlog_test.go",

0 commit comments

Comments
 (0)