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/23 05:51:02 UTC

couch-log commit: updated refs/heads/master to 4d04ccb

Repository: couchdb-couch-log
Updated Branches:
  refs/heads/master a783a0aad -> 4d04ccb97


Integrate with Travis CI


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch-log/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch-log/commit/4d04ccb9
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch-log/tree/4d04ccb9
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch-log/diff/4d04ccb9

Branch: refs/heads/master
Commit: 4d04ccb975346a88ee5667f0998eef24ed4669de
Parents: a783a0a
Author: Alexander Shorin <kx...@apache.org>
Authored: Mon Nov 23 07:27:30 2015 +0300
Committer: Alexander Shorin <kx...@apache.org>
Committed: Mon Nov 23 07:47:49 2015 +0300

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


http://git-wip-us.apache.org/repos/asf/couchdb-couch-log/blob/4d04ccb9/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..621c9cb
--- /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/couch_log
+  - make
+
+script:
+  - make eunit apps=couch_log skip_deps=couch_epi
+
+cache: apt