mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-18 12:22:10 +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.
22 lines
318 B
Bash
Executable File
22 lines
318 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
if [ "$TRAVIS_PULL_REQUEST" = false ]
|
|
then
|
|
|
|
sh/test --arg debug false
|
|
|
|
else
|
|
|
|
nix-build nix/ops \
|
|
-A test \
|
|
-A brass \
|
|
--max-jobs 2 \
|
|
--no-out-link
|
|
|
|
sh/test --arg debug true
|
|
sh/update-brass-pill
|
|
|
|
fi
|