You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@quickstep.apache.org by zu...@apache.org on 2016/06/09 22:01:59 UTC

[7/7] incubator-quickstep git commit: Reduced the vectorilazation level to save the build time.

Reduced the vectorilazation level to save the build time.


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

Branch: refs/heads/travis-grpc
Commit: 2ed4000879bb27e6f118019b9f170b2d9e8336f1
Parents: 75a3174
Author: Zuyu Zhang <zu...@apache.org>
Authored: Thu Jun 9 15:01:53 2016 -0700
Committer: Zuyu Zhang <zu...@apache.org>
Committed: Thu Jun 9 15:02:12 2016 -0700

----------------------------------------------------------------------
 .travis.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/2ed40008/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 819646e..66f62e0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,8 +15,8 @@ compiler:
   - clang
 
 env:
-  - BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions
-  - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions
+  - BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=selection
+  - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=selection
   - BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=none
   - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=none
 
@@ -34,7 +34,7 @@ before_install:
     fi
 
 install:
-  - if [ "$VECTOR_COPY_ELISION_LEVEL" = "joinwithbinaryexpressions" ] && [ "$CC" = "gcc" ]; then
+  - if [ "$VECTOR_COPY_ELISION_LEVEL" = "selection" ] && [ "$CC" = "gcc" ]; then
       export MAKE_JOBS=1;
     else
       export MAKE_JOBS=2;