You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@quickstep.apache.org by na...@apache.org on 2016/06/08 23:29:35 UTC

incubator-quickstep git commit: Move env variable initialization to before_install

Repository: incubator-quickstep
Updated Branches:
  refs/heads/travis_llvm_fix 0300fbc13 -> 5da1f8de7


Move env variable initialization to before_install


Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/5da1f8de
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/5da1f8de
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/5da1f8de

Branch: refs/heads/travis_llvm_fix
Commit: 5da1f8de7432cea8e1a1d815db50064a1128b30d
Parents: 0300fbc
Author: Navneet Potti <na...@gmail.com>
Authored: Wed Jun 8 18:29:20 2016 -0500
Committer: Navneet Potti <na...@gmail.com>
Committed: Wed Jun 8 18:29:20 2016 -0500

----------------------------------------------------------------------
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/5da1f8de/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 0de8e8b..c73749b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,10 +19,10 @@ env:
   - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions
   - BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=none
   - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=none
-  - LLVM_VERSION=3.7.1
-  - LLVM_ARCHIVE_PATH=$HOME/clang+llvm.tar.xz
 
 before_install:
+  - LLVM_VERSION=3.7.1
+  - LLVM_ARCHIVE_PATH=$HOME/clang+llvm.tar.xz
   - wget http://llvm.org/releases/$LLVM_VERSION/clang+llvm-$LLVM_VERSION-x86_64-linux-gnu-ubuntu-14.04.tar.xz -O $LLVM_ARCHIVE_PATH
   - mkdir -p $HOME/clang-$LLVM_VERSION
   - tar xf $LLVM_ARCHIVE_PATH -C $HOME/clang-$LLVM_VERSION --strip-components 1