mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-13 08:38:43 +03:00
ade1e59ce1
* Add cross-compilation for `lmdb`. * Got built caching working in CI with `cachix`. * Cache cross compilation dependencies and toolchains. * Do release builds in CI. * Upload release builds to `bootstrap.urbit.org` on successful build. * Lots of optimization work for CI. * Boot from a solid pill in CI and load arvo with `-A`. * Increase `vere` HTTP timeout to 15m.
19 lines
306 B
Nix
19 lines
306 B
Nix
{ pkgs ? import ../nixpkgs.nix
|
|
, debug ? false
|
|
, ship ? "zod"
|
|
, pill ? ../../bin/solid.pill
|
|
}:
|
|
|
|
let
|
|
|
|
deps = import ../deps { inherit pkgs; };
|
|
tlon = import ../pkgs { inherit pkgs; };
|
|
arvo = tlon.arvo;
|
|
urbit = tlon.urbit;
|
|
|
|
in
|
|
|
|
import ./fakeship {
|
|
inherit pkgs tlon deps arvo pill ship debug;
|
|
}
|