You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by nt...@apache.org on 2022/07/07 10:35:29 UTC

[cayenne] branch STABLE-4.2 updated: Re-enable snapshot deployment and change JDK EA to JDK 18

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

ntimofeev pushed a commit to branch STABLE-4.2
in repository https://gitbox.apache.org/repos/asf/cayenne.git


The following commit(s) were added to refs/heads/STABLE-4.2 by this push:
     new 31e57fe7c Re-enable snapshot deployment and change JDK EA to JDK 18
31e57fe7c is described below

commit 31e57fe7c415ce1d717040742b39fbecdfa97493
Author: Nikita Timofeev <st...@gmail.com>
AuthorDate: Thu Jul 7 13:35:22 2022 +0300

    Re-enable snapshot deployment and change JDK EA to JDK 18
---
 .travis.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 62f506114..4313f2ab7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -42,7 +42,7 @@ script:
 
 jobs:
 # add hsql, h2 and derby databases to tests on openjdk8
-# To reduce the test time, add only postgress db on openjdk-ea 
+# To reduce the test time, add only postgress db on openjdk18
   include:
     - env: DB_PROFILE=hsql
       jdk: openjdk8
@@ -50,15 +50,15 @@ jobs:
       jdk: openjdk8
     - env: DB_PROFILE=derby
       jdk: openjdk8
-    - jdk: openjdk-ea
+    - jdk: openjdk18
       env: DB_PROFILE=postgres-tc
     - stage: deploy
       script: mvn deploy -DskipTests --settings .travis-mvn-settings.xml
       jdk: openjdk8
-      if: type = push AND branch = master AND repo = apache/cayenne
+      if: type = push AND branch = STABLE-4.2 AND repo = apache/cayenne
 
   allow_failures:
-    - jdk: openjdk-ea
+    - jdk: openjdk18
 
 # prevent Travis from unnecessary checks with pull request
   exclude:
@@ -67,7 +67,7 @@ jobs:
     - if: type = pull_request
       jdk: openjdk17
     - if: type = pull_request
-      jdk: openjdk-ea
+      jdk: openjdk18
 
 # prevent Travis from unneeded "mvn install" run
 install: true