summary refs log tree commit diff
path: root/maintainers/scripts/travis-nox-review-pr.sh
diff options
context:
space:
mode:
authorwmertens <Wout.Mertens@gmail.com>2014-10-15 18:50:28 +0200
committerwmertens <Wout.Mertens@gmail.com>2014-10-15 18:50:28 +0200
commite20e0470bf1de706fe6cc6e1743537a7737f83fa (patch)
treef6b85819b0434f05f1b5bb70127b15f22723bdf8 /maintainers/scripts/travis-nox-review-pr.sh
parentb084b3937580857d0f47e2c44a1c844c58c527c7 (diff)
downloadnixlib-e20e0470bf1de706fe6cc6e1743537a7737f83fa.tar
nixlib-e20e0470bf1de706fe6cc6e1743537a7737f83fa.tar.gz
nixlib-e20e0470bf1de706fe6cc6e1743537a7737f83fa.tar.bz2
nixlib-e20e0470bf1de706fe6cc6e1743537a7737f83fa.tar.lz
nixlib-e20e0470bf1de706fe6cc6e1743537a7737f83fa.tar.xz
nixlib-e20e0470bf1de706fe6cc6e1743537a7737f83fa.tar.zst
nixlib-e20e0470bf1de706fe6cc6e1743537a7737f83fa.zip
travis build: oops
Evaluation is too long - shouldn't have removed /dev/nulling

I wish I had a travis test environment :sad:
Diffstat (limited to 'maintainers/scripts/travis-nox-review-pr.sh')
-rwxr-xr-xmaintainers/scripts/travis-nox-review-pr.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh
index 272961fb752e..baee1baa11f5 100755
--- a/maintainers/scripts/travis-nox-review-pr.sh
+++ b/maintainers/scripts/travis-nox-review-pr.sh
@@ -4,6 +4,7 @@ set -e
 export NIX_CURL_FLAGS=-sS
 
 if [[ $1 == nix ]]; then
+    echo "=== Installing Nix..."
     # Install Nix
     bash <(curl -sS https://nixos.org/nix/install)
     source $HOME/.nix-profile/etc/profile.d/nix.sh
@@ -17,8 +18,10 @@ build-max-jobs = 4
 EOF
 
     # Verify evaluation
-    nix-env -f. -qa --json
+    echo "=== Verifying that nixpkgs evaluates..."
+    nix-env -f. -qa --json >/dev/null
 elif [[ $1 == nox ]]; then
+    echo "=== Installing nox..."
     git clone -q https://github.com/madjar/nox
     pip --quiet install -e nox
 elif [[ $1 == build ]]; then
@@ -28,6 +31,7 @@ elif [[ $1 == build ]]; then
         echo "===> Not a pull request, checking evaluation"
         nix-build pkgs/top-level/release.nix -A tarball
     else
+        echo "=== Checking PR"
         # The current HEAD is the PR merged into origin/master, so we compare
         # against origin/master
         nox-review wip --against origin/master