You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by dm...@apache.org on 2014/12/15 18:52:42 UTC

mesos git commit: travis-ci: call bootstrap correctly and reduce matrix size for now

Repository: mesos
Updated Branches:
  refs/heads/master 8593e132e -> 8ffc568ab


travis-ci: call bootstrap correctly and reduce matrix size for now


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/8ffc568a
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/8ffc568a
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/8ffc568a

Branch: refs/heads/master
Commit: 8ffc568abb2d60f7f1ae157a7ebfa135373c37f9
Parents: 8593e13
Author: Dominic Hamon <dh...@twitter.com>
Authored: Mon Dec 15 09:52:16 2014 -0800
Committer: Dominic Hamon <dh...@twitter.com>
Committed: Mon Dec 15 09:52:16 2014 -0800

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/8ffc568a/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index ff55e67..23ea1bc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,14 +13,15 @@ matrix:
     - os: linux
       env: BUILD_TYPE=Release
       compiler: gcc
-    - os: osx
-      env: BUILD_TYPE=Debug
-    - os: osx
-      env: BUILD_TYPE=Release
+#    - os: osx
+#      env: BUILD_TYPE=Debug
+#    - os: osx
+#      env: BUILD_TYPE=Release
 language: cpp
 before_script:
-  - ./bootstrap.sh
-  - mkdir build && cd build
+  - ./bootstrap
+  - mkdir build
+  - cd build
 script:
   - if [ "$BUILD_TYPE" = "Debug" ]; then ../configure --enable-debug; fi
   - if [ "$BUILD_TYPE" = "Release" ]; then ../configure; fi