2014-09-21 13:09:35 +02:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
|
2014-10-14 14:31:43 +02:00
|
|
|
export NIX_CURL_FLAGS=-sS
|
|
|
|
|
2014-10-15 11:03:30 +02:00
|
|
|
if [[ $1 == nix ]]; then
|
|
|
|
# Install Nix
|
2014-10-15 18:45:13 +02:00
|
|
|
bash <(curl -sS https://nixos.org/nix/install)
|
2014-10-15 11:03:30 +02:00
|
|
|
source $HOME/.nix-profile/etc/profile.d/nix.sh
|
2014-09-21 13:09:35 +02:00
|
|
|
|
2014-10-15 11:03:30 +02:00
|
|
|
# Make sure we can use hydra's binary cache
|
|
|
|
sudo mkdir /etc/nix
|
|
|
|
sudo tee /etc/nix/nix.conf <<EOF >/dev/null
|
2014-09-23 14:31:01 +02:00
|
|
|
binary-caches = http://cache.nixos.org http://hydra.nixos.org
|
|
|
|
trusted-binary-caches = http://hydra.nixos.org
|
|
|
|
build-max-jobs = 4
|
|
|
|
EOF
|
2014-09-21 13:09:35 +02:00
|
|
|
|
2014-10-15 11:03:30 +02:00
|
|
|
# Verify evaluation
|
2014-10-15 18:45:13 +02:00
|
|
|
nix-env -f. -qa --json
|
2014-10-15 11:23:34 +02:00
|
|
|
elif [[ $1 == nox ]]; then
|
2014-10-15 11:03:30 +02:00
|
|
|
git clone -q https://github.com/madjar/nox
|
|
|
|
pip --quiet install -e nox
|
|
|
|
elif [[ $1 == build ]]; then
|
2014-10-15 11:52:23 +02:00
|
|
|
source $HOME/.nix-profile/etc/profile.d/nix.sh
|
|
|
|
|
2014-10-15 11:03:30 +02:00
|
|
|
if [[ $TRAVIS_PULL_REQUEST == false ]]; then
|
|
|
|
echo "===> Not a pull request, checking evaluation"
|
|
|
|
nix-build pkgs/top-level/release.nix -A tarball
|
|
|
|
else
|
|
|
|
# The current HEAD is the PR merged into origin/master, so we compare
|
|
|
|
# against origin/master
|
2014-10-15 18:45:13 +02:00
|
|
|
nox-review wip --against origin/master
|
2014-10-15 11:03:30 +02:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "$0: Unknown option $1" >&2
|
|
|
|
false
|
2014-09-21 13:09:35 +02:00
|
|
|
fi
|