Skip to content

Commit

Permalink
Workaround eval failure in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfmpe committed Dec 20, 2024
1 parent 2ba24b0 commit 5e4f911
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions release.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
{ supportedSystems ? [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ]
}:
let
pkgs = (import ./. {}).nixpkgs;
recurse = x: x // { recurseForDerivations = true; };
in
recurse (pkgs.lib.genAttrs supportedSystems (system:
let
skeleton = import ./skeleton { inherit system; };
in with skeleton; recurse {
inherit exe;
android-app = recurse android.app;
ios-app = recurse ios.app;
}))

/*
rec {
recurseForDerivations = true;
build = import ./all-builds.nix { inherit supportedSystems; };
test = import ./all-tests.nix { inherit supportedSystems; };
inherit (build) metaCache;
}
*/

0 comments on commit 5e4f911

Please sign in to comment.