Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

11 righe
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