Skip to content

Commit

Permalink
nixos/release-combined.nix: makes aarch64-linux limited support
Browse files Browse the repository at this point in the history
This is because it will not eval properly with `hydra-eval-jobs`.

```
$ ...hydra/result/bin/hydra-eval-jobs \
    --arg nixpkgs '{ outPath = ./.; revCount = 123; shortRev = "4567"; }' \
    -I "$PWD" \
    nixos/release-combined.nix
```

It fails with:

```
Too many heap sections: Increase MAXHINCR or MAX_HEAP_SECTS
```
  • Loading branch information
samueldr committed Dec 22, 2018
1 parent 16316a1 commit 1bfe8f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nixos/release-combined.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

{ nixpkgs ? { outPath = (import ../lib).cleanSource ./..; revCount = 56789; shortRev = "gfedcba"; }
, stableBranch ? false
, supportedSystems ? [ "x86_64-linux" "aarch64-linux" ]
, limitedSupportedSystems ? [ "i686-linux" ]
, supportedSystems ? [ "x86_64-linux" ]
, limitedSupportedSystems ? [ "i686-linux" "aarch64-linux" ]
}:

let
Expand Down

0 comments on commit 1bfe8f1

Please sign in to comment.