mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
18 lines
316 B
YAML
18 lines
316 B
YAML
language: nix
|
|
|
|
sudo: false
|
|
|
|
env:
|
|
global:
|
|
- CACHIX_CACHE=nix-on-droid
|
|
|
|
install:
|
|
- nix-env -iA cachix -f https://cachix.org/api/v1/install
|
|
- cachix use "${CACHIX_CACHE}"
|
|
- cachix push "${CACHIX_CACHE}" -w &
|
|
|
|
script:
|
|
- nix-build ci.nix
|
|
|
|
after_success:
|
|
- nix-build ci.nix | cachix push "${CACHIX_CACHE}"
|