ghc8102Binary, ghc865Binary: don't build aarch64 on hydra
Unfortunately these compiler's normal binary versions exceed the maximum output size on hydra and thus can't be built on there. See also https://gitlab.haskell.org/ghc/ghc/-/issues/17051
This commit is contained in:
@@ -171,6 +171,9 @@ stdenv.mkDerivation rec {
|
||||
enableShared = true;
|
||||
};
|
||||
|
||||
meta.license = lib.licenses.bsd3;
|
||||
meta.platforms = ["x86_64-linux" "aarch64-linux" "i686-linux" "x86_64-darwin"];
|
||||
meta = rec {
|
||||
license = lib.licenses.bsd3;
|
||||
platforms = ["x86_64-linux" "aarch64-linux" "i686-linux" "x86_64-darwin"];
|
||||
hydraPlatforms = builtins.filter (p: p != "aarch64-linux") platforms;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user