Bumps [cloud.google.com/go/compute](https://github.com/googleapis/google-cloud-go) from 1.10.0 to 1.19.3. - [Release notes](https://github.com/googleapis/google-cloud-go/releases) - [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/documentai/CHANGES.md) - [Commits](https://github.com/googleapis/google-cloud-go/compare/kms/v1.10.0...compute/v1.19.3) --- updated-dependencies: - dependency-name: cloud.google.com/go/compute dependency-type: direct:production update-type: version-update:semver-minor ... Migrated to the new version by following https://github.com/googleapis/google-cloud-go/blob/main/migration.md Co-authored-by: Tomáš Hozza <thozza@redhat.com> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Tomáš Hozza <thozza@redhat.com>
10 lines
282 B
Bash
10 lines
282 B
Bash
#!/bin/bash
|
|
set -eu -o pipefail
|
|
|
|
# Small convenience script for running the tests with various combinations of
|
|
# arch/tags. This assumes we're running on amd64 and have qemu available.
|
|
|
|
go test ./...
|
|
go test -tags purego ./...
|
|
GOARCH=arm64 go test
|
|
GOARCH=arm64 go test -tags purego
|