From 2a3312ac3570f7168d56786683969bbe000f72ca Mon Sep 17 00:00:00 2001 From: greatroar <@> Date: Mon, 25 May 2020 10:33:36 +0200 Subject: [PATCH] Remove Solaris build workaround in integration tests This was introduced in #1821 because of issues with Go 1.9, but that compiler version is no longer supported. --- run_integration_tests.go | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/run_integration_tests.go b/run_integration_tests.go index a6144526c..5de573644 100644 --- a/run_integration_tests.go +++ b/run_integration_tests.go @@ -230,13 +230,7 @@ func (env *TravisEnvironment) Prepare() error { "openbsd/386", "openbsd/amd64", "netbsd/386", "netbsd/amd64", "linux/arm", "freebsd/arm", - "linux/ppc64le", - } - - if os.Getenv("RESTIC_BUILD_SOLARIS") == "0" { - msg("Skipping Solaris build\n") - } else { - env.goxOSArch = append(env.goxOSArch, "solaris/amd64") + "linux/ppc64le", "solaris/amd64", } } else { env.goxOSArch = []string{runtime.GOOS + "/" + runtime.GOARCH}