mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-15 02:48:06 +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.
12 lines
263 B
Nix
12 lines
263 B
Nix
let
|
|
|
|
util = import ./util.nix;
|
|
nixcrpkgs = import ../nixcrpkgs.nix;
|
|
release = import ../release.nix;
|
|
all_releases = util.flattenSetPrefix release;
|
|
crosstools = { inherit (nixcrpkgs.native) pkgconf; };
|
|
|
|
in
|
|
|
|
crosstools // all_releases
|