Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

testall.sh 282 B

12345678910
  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