mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
[dev.simd] cmd/dist: disable API check on dev branch
Change-Id: I5a167e95a3275bfc39fddc793b0775976747dc9a Reviewed-on: https://go-review.googlesource.com/c/go/+/677277 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
parent
62e1fccfb9
commit
71c0e550cd
1 changed files with 3 additions and 1 deletions
4
src/cmd/dist/test.go
vendored
4
src/cmd/dist/test.go
vendored
|
|
@ -939,7 +939,9 @@ func (t *tester) registerTests() {
|
|||
// which is darwin,linux,windows/amd64 and darwin/arm64.
|
||||
//
|
||||
// The same logic applies to the release notes that correspond to each api/next file.
|
||||
if goos == "darwin" || ((goos == "linux" || goos == "windows") && goarch == "amd64") {
|
||||
//
|
||||
// TODO: remove the exclusion of goexperiment simd right before dev.simd branch is merged to master.
|
||||
if goos == "darwin" || ((goos == "linux" || goos == "windows") && (goarch == "amd64" && !strings.Contains(goexperiment, "simd"))) {
|
||||
t.registerTest("API release note check", &goTest{variant: "check", pkg: "cmd/relnote", testFlags: []string{"-check"}})
|
||||
t.registerTest("API check", &goTest{variant: "check", pkg: "cmd/api", timeout: 5 * time.Minute, testFlags: []string{"-check"}})
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue