Skip to content

Commit

Permalink
Fix mobile CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfmpe committed Dec 19, 2024
1 parent 8f55e23 commit 5b3ff5d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions all-builds.nix
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,6 @@ let
echo "return" >> "$out"
cat "${skeleton.shells.ghc}" >> "$out"
'';
androidSkeleton = skeleton.android.frontend;
iosSkeleton = skeleton.ios.frontend;
nameSuffix = if profiling then "profiled" else "unprofiled";
packages = {
skeletonProfiledObRun = rawSkeleton.__unstable__.profiledObRun;
Expand All @@ -96,10 +94,10 @@ let
ghcjs
serverSkeletonExe
;
} // lib.optionalAttrs reflex-platform.androidSupport {
inherit androidSkeleton;
} // lib.optionalAttrs reflex-platform.iosSupport {
inherit iosSkeleton;
} // lib.optionalAttrs (system == "x86_64-linux") {
android-app = rawSkeleton.android.app.aarch64;
} // lib.optionalAttrs (system == "x86_64-darwin") {
ios-app = rawSkeleton.ios.app.aarch64;
};
in packages // {
cache = pinBuildInputs
Expand Down

0 comments on commit 5b3ff5d

Please sign in to comment.