mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
d09eae2efa
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.52.3 to 1.53.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](https://github.com/grpc/grpc-go/compare/v1.52.3...v1.53.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
11 lines
282 B
Bash
11 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
|