6472b2645c
Adds a configuration that builds all of my own services and pushes the resulting closures to Cachix.
10 lines
303 B
YAML
10 lines
303 B
YAML
language: nix
|
|
env:
|
|
- NIX_PATH="nixpkgs=${TRAVIS_BUILD_DIR}"
|
|
before_script:
|
|
- nix-env -f '<nixpkgs>' -iA cachix
|
|
- cachix use tazjin
|
|
script:
|
|
# All of my own tools are under the top-level 'tazjin' attribute
|
|
# set, this command will build all of them.
|
|
- nix-build -A tazjin | cachix push tazjin
|