From f689e2638d9b9e787080b07f44fd4e24bb97e08f Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Thu, 27 Jul 2023 21:27:31 +0200 Subject: [PATCH] reenable aix builds --- changelog/unreleased/pull-4365 | 6 ------ helpers/build-release-binaries/main.go | 1 + 2 files changed, 1 insertion(+), 6 deletions(-) delete mode 100644 changelog/unreleased/pull-4365 diff --git a/changelog/unreleased/pull-4365 b/changelog/unreleased/pull-4365 deleted file mode 100644 index c13a80af4..000000000 --- a/changelog/unreleased/pull-4365 +++ /dev/null @@ -1,6 +0,0 @@ -Change: Building restic on AIX is temporarily unsupported - -As the current version of the library used for the Azure backend does not -compile on AIX, there are currently no restic builds available for AIX. - -https://github.com/restic/restic/pull/4365 diff --git a/helpers/build-release-binaries/main.go b/helpers/build-release-binaries/main.go index caa90ff82..f14f60db6 100644 --- a/helpers/build-release-binaries/main.go +++ b/helpers/build-release-binaries/main.go @@ -239,6 +239,7 @@ func buildTargets(sourceDir, outputDir string, targets map[string][]string) { } var defaultBuildTargets = map[string][]string{ + "aix": {"ppc64"}, "darwin": {"amd64", "arm64"}, "freebsd": {"386", "amd64", "arm"}, "linux": {"386", "amd64", "arm", "arm64", "ppc64le", "mips", "mipsle", "mips64", "mips64le", "riscv64", "s390x"},