From 2387a2d90895755d851f063928f198dd42e1676c Mon Sep 17 00:00:00 2001 From: Thomas Brand Date: Sun, 17 Feb 2019 22:47:25 +0100 Subject: OSX build installs to /usr/local prefix --- .ci/test_run.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.ci/test_run.sh b/.ci/test_run.sh index 3071fd83..7cba993d 100755 --- a/.ci/test_run.sh +++ b/.ci/test_run.sh @@ -1,12 +1,11 @@ #!/bin/bash -#stop here if ./waf install wasn't successful -ls -l /usr/bin/jackd || exit - echo "`date`" echo "$TRAVIS_OS_NAME" echo "=========================================================================" if [ "$TRAVIS_OS_NAME" == "linux" ]; then + #stop here if ./waf install wasn't successful + ls -l /usr/bin/jackd || exit #find installed files sudo updatedb locate jack | grep -e "/usr/bin" -e "/usr/lib" -e "/usr/share/man" -e "/usr/include" @@ -16,6 +15,9 @@ if [ "$TRAVIS_OS_NAME" == "linux" ]; then #check for unused dependencies ls -1 /usr/bin/jack_*|while read line; do echo "checking unused dependencies for ${line}:"; ldd -r -u "$line"; done +elif [ "$TRAVIS_OS_NAME" == "osx" ]; then + #stop here if ./waf install wasn't successful + ls -l /usr/local/bin/jackd || exit fi echo "=========================================================================" jackd --version -- cgit v1.2.1