[
https://issues.apache.org/jira/browse/GEODE-2437?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15856253#comment-15856253
]
ASF GitHub Bot commented on GEODE-2437:
---------------------------------------
Github user echobravopapa commented on a diff in the pull request:
https://github.com/apache/geode/pull/394#discussion_r99858609
--- Diff: .travis.yml ---
@@ -0,0 +1,43 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+language: cpp
+sudo: required
+
+before_install:
+ - sudo apt-get -qq update
+ - sudo apt-get -y build-essential
+ - sudo apt-get install -y cmake
+ - sudo apt-get install -y doxygen
+ - sudo apt-get install -y git
+ - sudo apt-get install -y openjdk-8-jdk
+ - sudo apt-get install -y wget
+ - sudo apt-get install -y zlib1g-dev
+
+install: mkdir build && cd build && cmake ../src && cmake --build . -- -j 8
--- End diff --
The configuration step will need to be like so:
`make ../src -DGEODE_ROOT=<pathtogeode> `
optionally one could add:
`-DCMAKE_BUILD_TYPE=Debug` Debug is default unless Release is specified
`-DPRODUCT_VERSION=maj.min.patch-build.N`
> Integrate native client with travis-ci
> --------------------------------------
>
> Key: GEODE-2437
> URL: https://issues.apache.org/jira/browse/GEODE-2437
> Project: Geode
> Issue Type: Improvement
> Components: build
> Reporter: Anthony Baker
>
> We should integrate the native client branch with travis-ci so we can tell if
> PR's or other code changes are good.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)