mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-01-04 02:38:50 +00:00
3bfc0b0118
Drop -mod=vendor because it's not needed by now. There are multiple reasons for this: 1) integration_test.go has no external dependencies, 2) there's no checked-in vendor directory, 3) CL 544855 deleted the last 'go mod vendor' invocation in code, and 4) now that the go.mod has a go directive at 1.14+ (CL 547337), automatic vendoring¹ is on. For golang/go#64066. ¹ https://go.dev/doc/go1.14#vendor, https://go.dev/ref/mod#vendoring Change-Id: If8f3ea85d560b2796a2ccdb4ae7dbc38f0760982 Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/548115 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Michael Stapelberg <stapelberg@google.com>
9 lines
283 B
Bash
Executable File
9 lines
283 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2018 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
cd "$(git rev-parse --show-toplevel)"
|
|
go test -v -timeout=60m -count=1 integration_test.go -failfast "$@"
|
|
exit $?
|