1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

test: validate arch map for linuxpp64/ppc64le (#988)

I didn't notice the go testing framework when I made the first pull
request so these were left out. Not a big deal either way but we might
as well have complete tests.
This commit is contained in:
Phil DeMonaco 2019-03-20 09:27:49 -04:00 committed by Carlos Alexandro Becker
parent 7c4352147b
commit 3fbba1b594

View File

@ -14,6 +14,8 @@ func TestArch(t *testing.T) {
"linuxarm64": "arm64",
"linuxarm6": "armel",
"linuxarm7": "armhf",
"linuxppc64": "ppc64",
"linuxppc64le": "ppc64le",
"linuxwhat": "what",
} {
t.Run(fmt.Sprintf("%s to %s", from, to), func(t *testing.T) {