-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
testutils: move
sideeye
helper to its own package
This being directly present in `pkg/testutils` meant that `side-eye` is directly linked into `cockroach`, which was not intentional. It also made `cockroach` impossible to build for `s390x` as `side-eye` doesn't support it. Since the helper is unused, we can just move the helper to its own package. Epic: CRDB-21133 Release note: None
- Loading branch information
1 parent
004b3d4
commit 1b5b9f6
Showing
5 changed files
with
19 additions
and
6 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
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,14 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||
|
||
go_library( | ||
name = "sideeye", | ||
srcs = ["sideeye.go"], | ||
importpath = "github.com/cockroachdb/cockroach/pkg/testutils/sideeye", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
"//pkg/testutils", | ||
"@com_github_cockroachdb_errors//:errors", | ||
"@com_github_dataexmachina_dev_side_eye_go//sideeye", | ||
"@com_github_stretchr_testify//require", | ||
], | ||
) |
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