Merge pull request #83 from eqyiel/avoid-timeout

ci: don't test on unstable to avoid timeout
This commit is contained in:
Robin Raymond 2018-02-21 10:15:23 +01:00 committed by GitHub
commit 372c1a7033
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

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