1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2024-12-14 11:57:55 +00:00
home-manager/.gitlab-ci.yml
2019-08-14 17:38:47 +02:00

26 lines
459 B
YAML

image: nixos/nix:latest
stages:
- test
- deploy
Run tests:
stage: test
script:
- nix-shell tests -A run.all
only:
- master
Deploy manual:
stage: deploy
script:
- mkdir -p ~/.config/nixpkgs
- echo '{ manual.html.enable = true; }' > ~/.config/nixpkgs/home.nix
- nix-shell . -A install
- mkdir public
- cp -r ~/.nix-profile/share/doc/home-manager/* public/
artifacts:
paths:
- public
only:
- master