25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

11 satır
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