mirror of
https://github.com/nix-community/docker-nixpkgs.git
synced 2026-01-11 20:30:37 -05:00
26 lines
503 B
YAML
26 lines
503 B
YAML
image: nixos/nix:latest
|
|
|
|
stages:
|
|
- build
|
|
|
|
nixos-unstable:
|
|
stage: build
|
|
script: nix-shell --run ./.gitlab-ci.sh
|
|
variables:
|
|
NIX_PATH: nixpkgs=channel:nixos-unstable
|
|
IMAGE_TAG: latest
|
|
|
|
nixos-19.03:
|
|
stage: build
|
|
script: nix-shell --run ./.gitlab-ci.sh
|
|
variables:
|
|
NIX_PATH: nixpkgs=channel:nixos-19.03
|
|
IMAGE_TAG: nixos-19.03
|
|
|
|
nixos-19.09:
|
|
stage: build
|
|
script: nix-shell --run ./.gitlab-ci.sh
|
|
variables:
|
|
NIX_PATH: nixpkgs=channel:nixos-19.09
|
|
IMAGE_TAG: nixos-19.09
|