
* run the ./build after setting the NIX_PATH. Previously the images were always generate with the system channel. Oops! * pin the outer shell version to nixos-19.09. skopeo broke in unstable. also we don't need to force the system here, technically this could run on macOS.
15 lines
288 B
YAML
15 lines
288 B
YAML
language: nix
|
|
|
|
nix: 2.2.1
|
|
|
|
matrix:
|
|
include:
|
|
- name: nixos-unstable
|
|
env: NIXPKGS_CHANNEL=nixos-unstable IMAGE_TAG=latest
|
|
- name: nixos-19.09
|
|
env: NIXPKGS_CHANNEL=nixos-19.09
|
|
- name: nixos-19.03
|
|
env: NIXPKGS_CHANNEL=nixos-19.03
|
|
|
|
script:
|
|
- nix-shell --run ./.travis.sh
|