mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 10:05:09 +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.
34 lines
743 B
YAML
34 lines
743 B
YAML
language: nix
|
|
nix: 2.1.3
|
|
|
|
install:
|
|
- nix-env -iA cachix -f https://cachix.org/api/v1/install
|
|
|
|
before_install:
|
|
- git lfs pull
|
|
|
|
script:
|
|
- cachix authtoken "$CACHIX_AUTH_TOKEN" >/dev/null
|
|
- cachix use urbit2
|
|
|
|
- ./sh/cachix
|
|
|
|
- make
|
|
- make release
|
|
|
|
- sh/ci-tests
|
|
|
|
deploy:
|
|
- skip_cleanup: true
|
|
provider: gcs
|
|
access_key_id: GOOGTADOPP55X5ZTH3IKAXQW
|
|
secret_access_key:
|
|
secure: rSPif0VHX3Q3QpWM9iUt/Z9sicCY8ABuwVFPeT3YUnAAmSXM46PIHKieoGs79kx9IelFyQsM8xS0XWyt4S/haR7VaTJY+zHJjf0AnA1sr5ZIV70t3K0SXzq4+E1ffOZRiC0VmHatPz10wjaIpHxpjcROqQV4M1dBCq2H/rpccIE=
|
|
bucket: bootstrap.urbit.org
|
|
local-dir: release/
|
|
acl: public-read
|
|
on:
|
|
condition: "-d release/"
|
|
repo: urbit/urbit
|
|
all_branches: true
|