No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

11 líneas
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