From 5e16c067ef7e991a7e2948c0141721c674a777f0 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sat, 29 Dec 2018 16:27:12 -0600 Subject: [PATCH] travis.yml: Run ``uname -s`` to find the right platform string. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index f70f3fc5eb..09721738ae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,6 +33,7 @@ addons: - libaio-dev - libsnappy-dev before_install: + - uname -s - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./build.sh deps-macosx ; else ./build.sh deps-apt-get ; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew ls --versions snappy > /dev/null || brew install snappy; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew ls --versions cmake > /dev/null || brew install cmake; fi