Updating travis yml to silence the log and adding sudo when installing boost and cmake
This commit is contained in:
parent
51270ea2e4
commit
822d3d9a7c
1 changed files with 6 additions and 7 deletions
13
.travis.yml
13
.travis.yml
|
@ -17,19 +17,18 @@ before_script:
|
||||||
- mkdir /tmp/cmake
|
- mkdir /tmp/cmake
|
||||||
- tar -xvf /tmp/cmake.tar.gz -C /tmp/cmake
|
- tar -xvf /tmp/cmake.tar.gz -C /tmp/cmake
|
||||||
- cd /tmp/cmake && \
|
- cd /tmp/cmake && \
|
||||||
./bootstrap --system-curl && \
|
./bootstrap --system-curl > /dev/null 2>&1 && \
|
||||||
make -j$(nproc) && \
|
make -j$(nproc) > /dev/null 2>&1 && \
|
||||||
make install
|
sudo make install > /dev/null 2>&1
|
||||||
- wget https://sourceforge.net/projects/boost/files/boost/1.63.0/boost_1_63_0.tar.gz -O /tmp/boost.tar.gz
|
- wget https://sourceforge.net/projects/boost/files/boost/1.63.0/boost_1_63_0.tar.gz -O /tmp/boost.tar.gz
|
||||||
- mkdir /tmp/boost
|
- mkdir /tmp/boost
|
||||||
- tar -xvf /tmp/boost.tar.gz -C /tmp/boost
|
- tar -xvf /tmp/boost.tar.gz -C /tmp/boost
|
||||||
- cd /tmp/boost && \
|
- cd /tmp/boost && \
|
||||||
./bootstrap.sh &&\
|
./bootstrap.sh > /dev/null 2>&1 &&\
|
||||||
./b2 -j $(nproc) cxxflags=-fPIC threading=multi runtime-link=shared \
|
sudo ./b2 -j $(nproc) cxxflags=-fPIC threading=multi runtime-link=shared \
|
||||||
--with-log --with-serialization --with-system --with-date_time \
|
--with-log --with-serialization --with-system --with-date_time \
|
||||||
--with-filesystem --with-regex --with-timer --with-chrono --with-thread \
|
--with-filesystem --with-regex --with-timer --with-chrono --with-thread \
|
||||||
--with-program_options \
|
--with-program_options install > /dev/null 2>&1
|
||||||
install
|
|
||||||
- wget https://download.affectiva.com/linux/gcc-5.4/affdex-cpp-sdk-4.0-75-ubuntu-xenial-xerus-x86_64bit.tar.gz -O /tmp/affdex-sdk.tar.gz
|
- wget https://download.affectiva.com/linux/gcc-5.4/affdex-cpp-sdk-4.0-75-ubuntu-xenial-xerus-x86_64bit.tar.gz -O /tmp/affdex-sdk.tar.gz
|
||||||
- mkdir /tmp/affdex-sdk
|
- mkdir /tmp/affdex-sdk
|
||||||
- tar -xzvf /tmp/affdex-sdk.tar.gz -C /tmp/affdex-sdk
|
- tar -xzvf /tmp/affdex-sdk.tar.gz -C /tmp/affdex-sdk
|
||||||
|
|
Loading…
Reference in a new issue