mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-23 02:36:36 +00:00

Also update golang.org/x/net and google.golang.org/grpc to fix vulnerabilities, although cloudflared is using them in a way that is not exposed to those risks
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
|