nixpkgs-suyu/maintainers/scripts/travis-nox-review-pr.sh

59 lines
1.8 KiB
Bash
Raw Normal View History

2014-09-21 13:09:35 +02:00
#! /usr/bin/env bash
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
2014-09-21 13:09:35 +02:00
# Make sure we can use hydra's binary cache
sudo mkdir /etc/nix
sudo sh -c 'echo "build-max-jobs = 4" > /etc/nix/nix.conf'
2014-09-21 13:09:35 +02:00
# Verify evaluation
echo "=== Verifying that nixpkgs evaluates..."
nix-env -f. -qa --json >/dev/null
2014-10-15 11:23:34 +02:00
elif [[ $1 == nox ]]; then
source $HOME/.nix-profile/etc/profile.d/nix.sh
echo "=== Installing nox..."
2016-06-01 16:31:14 +02:00
nix-build -A nox '<nixpkgs>' --show-trace
elif [[ $1 == build ]]; then
source $HOME/.nix-profile/etc/profile.d/nix.sh
2016-05-31 12:34:59 +02:00
if [[ $TRAVIS_OS_NAME == "osx" ]]; then
echo "Skipping NixOS things on darwin"
2016-05-31 12:34:59 +02:00
else
2016-06-16 12:18:16 +02:00
# Nix builds in /tmp and we need exec support
sudo mount -o remount,exec /run
sudo mount -o remount,exec /run/user
sudo mount
echo "=== Checking NixOS options"
2016-06-01 16:31:14 +02:00
nix-build nixos/release.nix -A options --show-trace
echo "=== Checking tarball creation"
2016-06-01 16:31:14 +02:00
nix-build pkgs/top-level/release.nix -A tarball --show-trace
2016-05-31 12:34:59 +02:00
fi
if [[ $TRAVIS_PULL_REQUEST == false ]]; then
echo "=== Not a pull request"
else
echo "=== Checking PR"
if ! nix-shell -p nox --run "nox-review pr ${TRAVIS_PULL_REQUEST}"; then
if sudo dmesg | egrep 'Out of memory|Killed process' > /tmp/oom-log; then
echo "=== The build failed due to running out of memory:"
cat /tmp/oom-log
echo "=== Please disregard the result of this Travis build."
fi
exit 1
fi
fi
else
echo "$0: Unknown option $1" >&2
false
2014-09-21 13:09:35 +02:00
fi