ci: don't test on unstable to avoid timeout

This commit is contained in:
Ruben Maher 2018-02-21 11:03:17 +10:30
parent 2ef04b2d9c
commit a5684ffb53
1 changed files with 5 additions and 5 deletions

View File

@ -1,11 +1,11 @@
language: nix language: nix
env:
NIX_PATH="nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/nixos-17.09.tar.gz"
script: script:
- NIX_PATH="nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/nixos-17.09.tar.gz" nix-build tests/intern.nix - nix-build tests/intern.nix
- NIX_PATH="nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/nixos-17.09.tar.gz" nix-build tests/extern.nix - nix-build tests/extern.nix
- NIX_PATH="nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz" nix-build tests/intern.nix
- NIX_PATH="nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz" nix-build tests/extern.nix
cache: cache:
directories: directories:
- /nix/store - /nix/store
timeout: 600