Repository: celix Updated Branches: refs/heads/develop acb389c12 -> d293c75ec CELIX-263: Fixed travis setup Project: http://git-wip-us.apache.org/repos/asf/celix/repo Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/d293c75e Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/d293c75e Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/d293c75e Branch: refs/heads/develop Commit: d293c75ec41edd9d6418c139b7591406386be4ee Parents: acb389c Author: Bjoern Petri Authored: Tue Oct 6 08:23:26 2015 +0200 Committer: Bjoern Petri Committed: Tue Oct 6 08:23:26 2015 +0200 ---------------------------------------------------------------------- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/celix/blob/d293c75e/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 9412fde..ea63995 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,8 +11,8 @@ matrix: before_script: - wget https://github.com/cpputest/cpputest.github.io/blob/master/releases/cpputest-3.7.1.tar.gz?raw=true -O /tmp/cpputest.tar.gz - - tar -xzvf /tmp/cpputest.tar.gz - - cd cpputest-3.7.1 && ./configure --prefix=$HOME/cpputest && make && make install + - tar -xzvf /tmp/cpputest.tar.gz -C /tmp + - cd /tmp/cpputest-3.7.1 && ./configure --prefix=$HOME/cpputest && make && make install && cd - - mkdir build install - cd build - cmake -DBUILD_DEPLOYMENT_ADMIN=ON -DBUILD_EXAMPLES=ON -DBUILD_LOG_SERVICE=ON -DBUILD_LOG_WRITER=ON -DBUILD_REMOTE_SERVICE_ADMIN=ON -DBUILD_RSA_DISCOVERY_CONFIGURED=ON -DBUILD_RSA_DISCOVERY_ETCD=ON -DBUILD_RSA_DISCOVERY_SHM=ON -DBUILD_RSA_EXAMPLES=ON -DBUILD_RSA_REMOTE_SERVICE_ADMIN_SHM=ON -DBUILD_RSA_REMOTE_SERVICE_ADMIN_HTTP=ON -DBUILD_REMOTE_SHELL=ON -DBUILD_SHELL=ON -DBUILD_SHELL_TUI=ON -DBUILD_DEVICE_ACCESS=ON -DBUILD_DEVICE_ACCESS_EXAMPLE=ON -DBUILD_UTILS-TESTS=ON -DCPPUTEST_INCLUDE_DIR=$HOME/cpputest/include/CppUTest -DCPPUTEST_LIBRARY=$HOME/cpputest/libCppUTest.a -DCPPUTEST_EXT_INCLUDE_DIR=$HOME/cpputest/include/CppUTestExt -DCPPUTEST_EXT_LIBRARY=$HOME/cpputest/libCppUTestExt.a -DCMAKE_INSTALL_PREFIX=../install ..