2023-11-09 02:08:44 -08:00
|
|
|
{
|
2025-03-31 00:34:37 +02:00
|
|
|
lib ? pkgs.lib,
|
2023-11-09 02:08:44 -08:00
|
|
|
pkgs,
|
|
|
|
}:
|
|
|
|
|
|
|
|
# The aws-sdk-cpp tests are flaky. Since pull requests to staging
|
|
|
|
# cause nix to be rebuilt, this means that staging PRs end up
|
|
|
|
# getting false CI failures due to whatever is flaky in the AWS
|
|
|
|
# SDK tests. Since none of our CI needs to (or should be able to)
|
|
|
|
# contact AWS S3, let's just omit it all from the Nix that runs
|
|
|
|
# CI. Bonus: the tests build way faster.
|
|
|
|
#
|
|
|
|
# See also: https://github.com/NixOS/nix/issues/7582
|
|
|
|
|
|
|
|
builtins.mapAttrs (
|
2025-03-24 19:20:07 +00:00
|
|
|
attr: pkg:
|
2025-03-26 21:45:55 +01:00
|
|
|
if lib.versionAtLeast pkg.version "2.29pre" then
|
2025-03-31 00:34:37 +02:00
|
|
|
pkg.overrideScope (finalScope: prevScope: { aws-sdk-cpp = null; })
|
2025-03-24 19:20:07 +00:00
|
|
|
else
|
2025-03-31 00:34:37 +02:00
|
|
|
pkg.override { withAWS = false; }
|
2023-11-09 02:08:44 -08:00
|
|
|
) pkgs.nixVersions
|