2018-08-20 19:04:16 +00:00
|
|
|
image: nixos/nix:latest
|
|
|
|
|
2020-01-01 12:52:01 +00:00
|
|
|
variables:
|
|
|
|
# Pinned 2020-01-01.
|
|
|
|
NIX_PATH: "nixpkgs=https://github.com/NixOS/nixpkgs/archive/b0bbacb52134a7e731e549f4c0a7a2a39ca6b481.tar.gz"
|
|
|
|
|
2019-08-13 22:45:26 +00:00
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
Run tests:
|
|
|
|
stage: test
|
|
|
|
script:
|
2019-08-18 19:32:52 +00:00
|
|
|
- nix-shell tests -A run.files-text
|
2019-08-13 22:45:26 +00:00
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
2019-08-21 20:57:46 +00:00
|
|
|
pages:
|
2019-08-13 22:45:26 +00:00
|
|
|
stage: deploy
|
2018-08-20 19:04:16 +00: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-13 23:13:16 +00: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
|