diff --git a/.github/workflows/instantiate.yml b/.github/workflows/instantiate.yml index 2f95d4ba..3ae6c7be 100644 --- a/.github/workflows/instantiate.yml +++ b/.github/workflows/instantiate.yml @@ -15,7 +15,7 @@ jobs: extra_nix_config: | experimental-features = nix-command flakes - run: | - nix run github:nix-community/nix-eval-jobs -- --workers $(nproc) --max-memory-size $(free -m | grep ^Mem | tr -s ' ' | cut -d ' ' -f 3 ) --option allow-import-from-derivation false --show-trace ./release-filtered.nix | tee eval.json + nix run github:nix-community/nix-eval-jobs/3f305f4538e056e6f6f775e1f75410b6d4d8d9aa -- --workers $(nproc) --option allow-import-from-derivation false --show-trace ./release.nix | tee eval.json jq -c 'select(.error)' eval.json | tee errors.json if [[ "$(wc -l < errors.json)" > 0 ]]; then exit 1; fi robotnix-eval-tests: diff --git a/release-filtered.nix b/release-filtered.nix deleted file mode 100644 index ce149760..00000000 --- a/release-filtered.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ pkgs ? (import ./pkgs {}) }: - -let - lib = pkgs.lib; - - filterForDerivations = lib.mapAttrs (name: value: - if lib.isDerivation value then value - else if value.recurseForDerivations or false then filterForDerivations value - else {} - ); -in - filterForDerivations (import ./release.nix { inherit pkgs; })