treewide: disable some hanging Darwin Hydra builds (#355159)
This commit is contained in:
commit
0eed3afc8c
@ -97,5 +97,8 @@ stdenvNoCC.mkDerivation rec {
|
|||||||
# Broken for Musl at 2024-01-13, tracking issue:
|
# Broken for Musl at 2024-01-13, tracking issue:
|
||||||
# https://github.com/NixOS/nixpkgs/issues/280716
|
# https://github.com/NixOS/nixpkgs/issues/280716
|
||||||
broken = stdenvNoCC.hostPlatform.isMusl;
|
broken = stdenvNoCC.hostPlatform.isMusl;
|
||||||
|
|
||||||
|
# Hangs when run via Rosetta 2 on Apple Silicon
|
||||||
|
hydraPlatforms = lib.lists.remove "x86_64-darwin" lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -88,5 +88,6 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
|||||||
homepage = "https://github.com/firefly-iii/firefly-iii";
|
homepage = "https://github.com/firefly-iii/firefly-iii";
|
||||||
license = lib.licenses.agpl3Only;
|
license = lib.licenses.agpl3Only;
|
||||||
maintainers = [ lib.maintainers.savyajha lib.maintainers.patrickdag ];
|
maintainers = [ lib.maintainers.savyajha lib.maintainers.patrickdag ];
|
||||||
|
hydraPlatforms = lib.platforms.linux; # build hangs on both Darwin platforms, needs investigation
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
@ -49,5 +49,6 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
mainProgram = "lbreakout2";
|
mainProgram = "lbreakout2";
|
||||||
maintainers = with lib.maintainers; [ AndersonTorres ciil ];
|
maintainers = with lib.maintainers; [ AndersonTorres ciil ];
|
||||||
platforms = lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
|
hydraPlatforms = lib.platforms.linux; # build hangs on both Darwin platforms, needs investigation
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
@ -86,6 +86,6 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
license = lib.licenses.gpl3Plus;
|
license = lib.licenses.gpl3Plus;
|
||||||
maintainers = with lib.maintainers; [ AndersonTorres kira-bruneau ];
|
maintainers = with lib.maintainers; [ AndersonTorres kira-bruneau ];
|
||||||
platforms = lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64;
|
hydraPlatforms = lib.platforms.linux; # build hangs on Darwin platforms, needs investigation
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
@ -44,5 +44,6 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
mainProgram = "vp";
|
mainProgram = "vp";
|
||||||
maintainers = with lib.maintainers; [ AndersonTorres ];
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
||||||
inherit (SDL.meta) platforms;
|
inherit (SDL.meta) platforms;
|
||||||
|
hydraPlatforms = lib.platforms.linux; # build hangs on both Darwin platforms, needs investigation
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
@ -63,5 +63,6 @@ stdenv.mkDerivation rec {
|
|||||||
license = lib.licenses.gpl2Plus;
|
license = lib.licenses.gpl2Plus;
|
||||||
homepage = "http://www.antigrain.com/";
|
homepage = "http://www.antigrain.com/";
|
||||||
platforms = lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
|
hydraPlatforms = lib.platforms.linux; # build hangs on both Darwin platforms, needs investigation
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user