You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2015/05/18 21:29:28 UTC

[02/10] lucy-clownfish git commit: Add .travis.yml

Add .travis.yml

TODO
- Run compiler test suite
- Test C bindings


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/98ffa459
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/98ffa459
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/98ffa459

Branch: refs/heads/master
Commit: 98ffa459ba47bce75d5d9ab80963c51e86b51fcb
Parents: a6a99fa
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Mon May 18 20:43:41 2015 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Mon May 18 21:22:48 2015 +0200

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


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/98ffa459/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..2268b51
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,30 @@
+# 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: perl
+perl:
+  - "5.20"
+  - "5.18"
+  - "5.16"
+  - "5.14"
+  - "5.12"
+  - "5.10"
+  - "5.8"
+env: LUCY_DEBUG=1
+git:
+  depth: 10
+before_install:
+  - cd runtime/perl
+