You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2021/02/02 09:58:20 UTC

[myfaces] branch 2.3.x updated: create travis ci for 2.3 branch

This is an automated email from the ASF dual-hosted git repository.

bommel pushed a commit to branch 2.3.x
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/2.3.x by this push:
     new cd35a99  create travis ci for 2.3 branch
     new 7ad2b59  Merge pull request #163 from volosied/2.3.x-travis-ci
cd35a99 is described below

commit cd35a99868f1199c224abd6bd02924010d0b10c0
Author: Volodymyr Siedlecki <vo...@gmail.com>
AuthorDate: Mon Feb 1 14:01:52 2021 -0500

    create travis ci for 2.3 branch
---
 .travis.yml | 45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..679d9ed
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,45 @@
+# 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: java
+
+cache:
+  directories:
+    - "$HOME/.m2"
+
+jdk:
+  - openjdk8
+  - openjdk11
+  - openjdk13
+  - openjdk-ea
+
+matrix:
+  exclude:
+    - if: type = pull_request
+      jdk: openjdk11
+    - if: type = pull_request
+      jdk: openjdk13
+    - if: type = pull_request
+      jdk: openjdk-ea
+    - if: type = pull_request
+      os: linux-ppc64le
+  include:
+    - os: linux-ppc64le
+      jdk: openjdk8
+  allow_failures:
+    - jdk: openjdk-ea
+
+script:
+  - mvn clean test
\ No newline at end of file