From f5c3f64ebd31c727cb35efcc846cf84275f78e49 Mon Sep 17 00:00:00 2001 From: John Lees Date: Thu, 23 Mar 2017 11:19:29 +0000 Subject: [PATCH] Fix arma lib name for travis There must be a better way... --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4eb9adb..0a44ce6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ install: - tar xzf gzstream.tgz - pushd gzstream && make && popd - wget https://www.dropbox.com/s/n0zxh86y5nk65km/armadillo-6.100.1.tar.gz?dl=0 - - tar xf armadillo-6.100.1.tar.gz + - mv 'armadillo-6.100.1.tar.gz?dl=0' armadillo-6.100.1.tar.gz && tar xf armadillo-6.100.1.tar.gz - pushd armadillo-6.100.1 && CXX=/usr/bin/g++-4.9 cmake . && make && sudo make install && popd script: CXX=/usr/bin/g++-4.9 make CPPFLAGS="-I../gzstream -I../dlib -D DLIB_NO_GUI_SUPPORT=1 -D DLIB_USE_BLAS=1 -D DLIB_USE_LAPACK=1 -D NO_HDF5=1" SEER_LDLIBS="-L../gzstream -lgzstream -lz -larmadillo -lboost_program_options -llapack -lblas -lpthread" && make test