mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 23:10:01 +00:00
11 lines
282 B
Bash
11 lines
282 B
Bash
|
#!/bin/bash
|
||
|
set -eu -o pipefail
|
||
|
|
||
|
# Small convenience script for running the tests with various combinations of
|
||
|
# arch/tags. This assumes we're running on amd64 and have qemu available.
|
||
|
|
||
|
go test ./...
|
||
|
go test -tags purego ./...
|
||
|
GOARCH=arm64 go test
|
||
|
GOARCH=arm64 go test -tags purego
|