2018-08-20 21:04:16 +02:00
|
|
|
image: nixos/nix:latest
|
|
|
|
|
2019-08-14 00:45:26 +02:00
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
Run tests:
|
|
|
|
stage: test
|
|
|
|
script:
|
2019-08-18 21:32:52 +02:00
|
|
|
- nix-shell tests -A run.files-text
|
2019-08-14 00:45:26 +02:00
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
2019-08-21 22:57:46 +02:00
|
|
|
pages:
|
2019-08-14 00:45:26 +02:00
|
|
|
stage: deploy
|
2018-08-20 21:04:16 +02:00
|
|
|
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
|
2019-08-14 01:13:16 +02:00
|
|
|
|
|
|
|
Deploy NUR:
|
|
|
|
stage: deploy
|
|
|
|
variables:
|
|
|
|
HM_BRANCH: $CI_COMMIT_REF_NAME
|
|
|
|
HM_COMMIT_SHA: $CI_COMMIT_SHA
|
|
|
|
trigger:
|
|
|
|
project: rycee/nur-expressions
|
|
|
|
branch: master
|
|
|
|
only:
|
|
|
|
- master
|