You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
282 B

  1. #!/bin/bash
  2. set -eu -o pipefail
  3. # Small convenience script for running the tests with various combinations of
  4. # arch/tags. This assumes we're running on amd64 and have qemu available.
  5. go test ./...
  6. go test -tags purego ./...
  7. GOARCH=arm64 go test
  8. GOARCH=arm64 go test -tags purego