From 716869dbd336387d5d80db3e7565586d34fc5d76 Mon Sep 17 00:00:00 2001 From: Stephane Carrez Date: Sun, 30 Jun 2024 15:34:55 +0200 Subject: [PATCH] Workarround to submit utilada_aws crate: disable Windows The root cause is aws that fails to build the awsres binary on Windows. See https://github.com/alire-project/alire/issues/1710 --- .alire/aws/alire.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.alire/aws/alire.toml b/.alire/aws/alire.toml index 0ea80cb6..3dcd73e6 100644 --- a/.alire/aws/alire.toml +++ b/.alire/aws/alire.toml @@ -38,5 +38,14 @@ UTIL_AWS_IMPL = ["1", "2", "3"] [gpr-set-externals] UTIL_AWS_IMPL = "3" +# AWS is broken on Windows +[available.'case(os)'] +linux = true +freebsd = true +macos = true +windows = false +'...' = false + + [configuration] disabled = true