about summary refs log tree commit diff
path: root/maintainers
diff options
context:
space:
mode:
authorGeorges Dubus <georges.dubus@numergy.com>2015-01-01 22:16:31 +0100
committerGeorges Dubus <georges.dubus@numergy.com>2015-01-04 14:02:07 +0100
commitc7df7f6361cb160ae566065aa840cf07975fef92 (patch)
tree2805a642191b9ac1c4746899b28530ee36c507b3 /maintainers
parentf2b01a662d4d9c5774a91cbaa762c8a73f7e97ce (diff)
downloadnixlib-c7df7f6361cb160ae566065aa840cf07975fef92.tar
nixlib-c7df7f6361cb160ae566065aa840cf07975fef92.tar.gz
nixlib-c7df7f6361cb160ae566065aa840cf07975fef92.tar.bz2
nixlib-c7df7f6361cb160ae566065aa840cf07975fef92.tar.lz
nixlib-c7df7f6361cb160ae566065aa840cf07975fef92.tar.xz
nixlib-c7df7f6361cb160ae566065aa840cf07975fef92.tar.zst
nixlib-c7df7f6361cb160ae566065aa840cf07975fef92.zip
Travis: check tarball creation even for pull requests
This will help us catch PR that break the tarball creation, for example
by breaking evaluation on other platforms.
Diffstat (limited to 'maintainers')
-rwxr-xr-xmaintainers/scripts/travis-nox-review-pr.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh
index 1c117c6add9d..9efadab18c01 100755
--- a/maintainers/scripts/travis-nox-review-pr.sh
+++ b/maintainers/scripts/travis-nox-review-pr.sh
@@ -28,12 +28,13 @@ elif [[ $1 == build ]]; then
     source $HOME/.nix-profile/etc/profile.d/nix.sh
 
     if [[ $TRAVIS_PULL_REQUEST == false ]]; then
-        echo "===> Not a pull request, checking evaluation"
-        nix-build pkgs/top-level/release.nix -A tarball
+        echo "=== Not a pull request"
     else
         echo "=== Checking PR"
         nox-review pr ${TRAVIS_PULL_REQUEST}
     fi
+    echo "=== Checking tarball creation"
+    nix-build pkgs/top-level/release.nix -A tarball
 else
     echo "$0: Unknown option $1" >&2
     false