45 lines
985 B
YAML
45 lines
985 B
YAML
|
image: nixos/nix:latest
|
||
|
|
||
|
variables:
|
||
|
# Pinned 2020-09-11.
|
||
|
NIX_PATH: "nixpkgs=https://github.com/NixOS/nixpkgs/archive/6d4b93323e7f78121f8d6db6c59f3889aa1dd931.tar.gz"
|
||
|
|
||
|
stages:
|
||
|
- test
|
||
|
- deploy
|
||
|
|
||
|
Run tests:
|
||
|
stage: test
|
||
|
script:
|
||
|
- nix-shell --pure tests -A run.files-text
|
||
|
rules:
|
||
|
- if: $CI_COMMIT_BRANCH == "master"
|
||
|
when: always
|
||
|
|
||
|
pages:
|
||
|
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
|
||
|
rules:
|
||
|
- if: $CI_COMMIT_BRANCH == "master"
|
||
|
when: always
|
||
|
|
||
|
Deploy NUR:
|
||
|
stage: deploy
|
||
|
variables:
|
||
|
HM_BRANCH: $CI_COMMIT_REF_NAME
|
||
|
HM_COMMIT_SHA: $CI_COMMIT_SHA
|
||
|
trigger:
|
||
|
project: rycee/nur-expressions
|
||
|
branch: master
|
||
|
rules:
|
||
|
- if: $CI_COMMIT_BRANCH == "master" || $CI_COMMIT_BRANCH =~ /^release-/
|
||
|
when: always
|