mirror of
https://github.com/urbit/shrub.git
synced 2024-12-14 20:02:51 +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.
24 lines
311 B
Makefile
24 lines
311 B
Makefile
.PHONY: build build-all install cross release test clean
|
|
|
|
build:
|
|
nix-build -A urbit -A herb --no-out-link
|
|
|
|
build-all:
|
|
nix-build --no-out-link
|
|
|
|
install:
|
|
nix-env -f . -iA urbit -iA urbit-debug -iA herb
|
|
|
|
cross:
|
|
sh/cross
|
|
|
|
release:
|
|
sh/release
|
|
|
|
test:
|
|
sh/test
|
|
|
|
clean:
|
|
rm -rf ./out ./work
|
|
rm -f result result-*
|