mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2024-12-28 00:19:55 +00:00
f542220747
Rather than waiting for all tests for all Go versions to finish only to find that there was some minor breakage, fail fast so that we stop wasting time. Change-Id: Ie255ceb5ac2cbdc598a074c6da281f5e49eb1326 Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/189019 Reviewed-by: Damien Neil <dneil@google.com>
9 lines
295 B
Bash
Executable File
9 lines
295 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 -mod=vendor -timeout=60m -count=1 integration_test.go -failfast "$@"
|
|
exit $?
|