You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2015/10/07 14:45:55 UTC

[15/20] celix git commit: CELIX-263: Fix travis clang setup

CELIX-263: Fix travis clang setup


Project: http://git-wip-us.apache.org/repos/asf/celix/repo
Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/673b5c7b
Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/673b5c7b
Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/673b5c7b

Branch: refs/heads/feature/CELIX-237_rsa-ffi
Commit: 673b5c7ba9a2dd6dbc2ca62f1d588bc6868e1f1b
Parents: ebbe202
Author: Bjoern Petri <bp...@apache.org>
Authored: Tue Oct 6 09:37:58 2015 +0200
Committer: Bjoern Petri <bp...@apache.org>
Committed: Tue Oct 6 09:37:58 2015 +0200

----------------------------------------------------------------------
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/673b5c7b/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 5d0a676..a898cb2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,7 +12,7 @@ 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 -C /tmp 
-    - cd /tmp/cpputest-3.7.1 && ./configure --prefix=$HOME/cpputest && make && make install && cd -
+    - if [ "$CC" = "clang" ]; then export CXX="clang++"; fi && cd /tmp/cpputest-3.7.1 && ./configure --prefix=$HOME/cpputest && make && make install && cd -
     - mkdir build install
 
 script: