1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 00:18:30 +02:00
home-manager/.gitlab-ci.yml

27 lines
459 B
YAML
Raw Normal View History

image: nixos/nix:latest
2019-08-14 00:45:26 +02:00
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