You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2020/05/01 11:20:16 UTC

[syncope] branch master updated: Travis CI: Replacing OpenJDK 13 with 15 (#180)

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

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/master by this push:
     new a9e343b  Travis CI: Replacing OpenJDK 13 with 15 (#180)
a9e343b is described below

commit a9e343bcb76fc6a98920fd959f0956ac2d6c3bed
Author: Francesco Chicchiriccò <il...@users.noreply.github.com>
AuthorDate: Fri May 1 13:20:09 2020 +0200

    Travis CI: Replacing OpenJDK 13 with 15 (#180)
---
 .travis.yml | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 9bf34eb..bf5c102 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -27,7 +27,7 @@ git:
   depth: 2
 env:
   global:
-  - MAVEN_OPTS="-Xmx4096M -Xss128M -XX:+CMSClassUnloadingEnabled -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -noverify"
+  - MAVEN_OPTS="-Xmx4096M -Xss128M -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -noverify"
   - JAVAEE_CONTAINER=Tomcat
   - DBMS=H2
   - jaxrsContentType=application/json
@@ -55,17 +55,17 @@ jobs:
       name: "Unit Tests via JDK 11"
       script: eval $TestCommand
     - stage: test
-      name: "Unit Tests via JDK 13"
+      name: "Unit Tests via JDK 14"
       script: 
-      - ~/bin/install-jdk.sh --target "/home/travis/openjdk13" --workspace "/home/travis/.cache/install-jdk" --feature "13" --license "GPL" --cacerts
-      - export JAVA_HOME=~/openjdk13
+      - ~/bin/install-jdk.sh --target "/home/travis/openjdk14" --workspace "/home/travis/.cache/install-jdk" --feature "14" --license "GPL" --cacerts
+      - export JAVA_HOME=~/openjdk14
       - export PATH="$JAVA_HOME/bin:$PATH"
       - eval $TestCommand
     - stage: test
-      name: "Unit Tests via JDK 14"
+      name: "Unit Tests via JDK 15"
       script: 
-      - ~/bin/install-jdk.sh --target "/home/travis/openjdk14" --workspace "/home/travis/.cache/install-jdk" --feature "14" --license "GPL" --cacerts
-      - export JAVA_HOME=~/openjdk14
+      - ~/bin/install-jdk.sh --target "/home/travis/openjdk15" --workspace "/home/travis/.cache/install-jdk" --feature "15" --license "GPL" --cacerts
+      - export JAVA_HOME=~/openjdk15
       - export PATH="$JAVA_HOME/bin:$PATH"
       - eval $TestCommand
       ######################################################