You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2015/11/10 00:10:21 UTC

couchdb-cassim git commit: Integrate with Travis CI

Repository: couchdb-cassim
Updated Branches:
  refs/heads/master 1ae21f7c4 -> 92172db75


Integrate with Travis CI


Project: http://git-wip-us.apache.org/repos/asf/couchdb-cassim/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-cassim/commit/92172db7
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-cassim/tree/92172db7
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-cassim/diff/92172db7

Branch: refs/heads/master
Commit: 92172db75da518ee40395a8d3d824324a9ee490c
Parents: 1ae21f7
Author: Alexander Shorin <kx...@apache.org>
Authored: Wed Nov 4 20:29:09 2015 +0300
Committer: Alexander Shorin <kx...@apache.org>
Committed: Wed Nov 4 20:31:04 2015 +0300

----------------------------------------------------------------------
 .travis.yml | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-cassim/blob/92172db7/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..ecd032c
--- /dev/null
+++ b/.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: erlang
+
+otp_release:
+  - 18.1
+  - 18.0
+  - 17.5
+  - R16B03-1
+
+sudo: false
+
+addons:
+  apt:
+    packages:
+      - libmozjs185-dev
+
+before_install:
+  - git clone --depth 1 https://github.com/apache/couchdb
+
+before_script:
+  - cd couchdb
+  - ./configure --disable-docs --disable-fauxton
+  - cp -r ../!(couchdb) ./src/cassim
+  - make
+
+script:
+  - make eunit apps=cassim skip_deps=couch_epi,couch_log
+
+cache: apt