summary refs log tree commit diff
path: root/maintainers
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2016-06-30 21:23:55 +0000
committerMatthew Bauer <mjbauer95@gmail.com>2016-07-12 21:34:58 +0000
commit95b28da35365c51ff1673baca9469b7f74a5bcf0 (patch)
treeeab1affce0d479223b46319b545760b6cd0de0a2 /maintainers
parent3c0fdefd8470878242d8c119952918e171be590c (diff)
downloadnixlib-95b28da35365c51ff1673baca9469b7f74a5bcf0.tar
nixlib-95b28da35365c51ff1673baca9469b7f74a5bcf0.tar.gz
nixlib-95b28da35365c51ff1673baca9469b7f74a5bcf0.tar.bz2
nixlib-95b28da35365c51ff1673baca9469b7f74a5bcf0.tar.lz
nixlib-95b28da35365c51ff1673baca9469b7f74a5bcf0.tar.xz
nixlib-95b28da35365c51ff1673baca9469b7f74a5bcf0.tar.zst
nixlib-95b28da35365c51ff1673baca9469b7f74a5bcf0.zip
travis: use community supported language
Switch to the "community supported" Nix version of Travis.
Diffstat (limited to 'maintainers')
-rwxr-xr-xmaintainers/scripts/travis-nox-review-pr.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh
index 025b27528e94..791a50b0ae80 100755
--- a/maintainers/scripts/travis-nox-review-pr.sh
+++ b/maintainers/scripts/travis-nox-review-pr.sh
@@ -1,14 +1,6 @@
 #! /usr/bin/env bash
 set -e
 
-# This should make Curl silent
-# but download-from-binary-cache doesn't respect
-export NIX_CURL_FLAGS=-sS
-
-if [ -d $HOME/.nix-profile ]; then
-    source $HOME/.nix-profile/etc/profile.d/nix.sh
-fi
-
 while test -n "$1"; do
 
     # tell Travis to use folding
@@ -16,23 +8,6 @@ while test -n "$1"; do
 
     case $1 in
 
-        install)
-            echo "=== Installing Nix..."
-
-            curl -sS https://nixos.org/nix/install | sh
-
-            # Make sure we can use hydra's binary cache
-            sudo mkdir /etc/nix
-            echo "build-max-jobs = 4" | sudo tee /etc/nix/nix.conf > /dev/null
-
-            # Make sure we can execute within /tmp in Linux
-            if [ "$TRAVIS_OS_NAME" == "linux" ]; then
-                sudo mount -o remount,exec /run
-                sudo mount -o remount,exec /run/user
-                sudo mount > /dev/null
-            fi
-            ;;
-
         verify)
             echo "=== Verifying that nixpkgs evaluates..."