You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2020/03/26 14:13:45 UTC

[skywalking] branch master updated: Add JDK13, JDK14 to build matrix (#4574)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 509b20e  Add JDK13, JDK14 to build matrix (#4574)
509b20e is described below

commit 509b20e7cee9e5969a7dadd86fdedc17a2f263a2
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Thu Mar 26 22:13:28 2020 +0800

    Add JDK13, JDK14 to build matrix (#4574)
    
    Motivation:
    
    Guarantee that the agent supports JDK13 and JDK14
    
    Modifications:
    
    Add JDK13 and JDK14 to build matrix
    
    Result:
    
    Build with JDK13 and JDK14
---
 .github/workflows/e2e.jdk-versions.yaml          | 2 +-
 docs/en/setup/service-agent/java-agent/README.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/e2e.jdk-versions.yaml b/.github/workflows/e2e.jdk-versions.yaml
index f6b3e2f..ef5d618 100644
--- a/.github/workflows/e2e.jdk-versions.yaml
+++ b/.github/workflows/e2e.jdk-versions.yaml
@@ -33,7 +33,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        jdk: [8, 9, 10, 11, 12]
+        jdk: [8, 9, 10, 11, 12, 13, 14]
     env:
       SW_SIMPLE_CASE: jdk
       SW_AGENT_JDK_VERSION: ${{ matrix.jdk }}
diff --git a/docs/en/setup/service-agent/java-agent/README.md b/docs/en/setup/service-agent/java-agent/README.md
index 21e6ca9..ce575b7 100755
--- a/docs/en/setup/service-agent/java-agent/README.md
+++ b/docs/en/setup/service-agent/java-agent/README.md
@@ -1,5 +1,5 @@
 # Setup java agent
-1. Agent is available for JDK 8 - 12 in 7.x releases. JDK 1.6 - JDK 12 are supported in all 6.x releases [NOTICEĀ¹](#notice)
+1. Agent is available for JDK 8 - 14 in 7.x releases. JDK 1.6 - JDK 12 are supported in all 6.x releases [NOTICEĀ¹](#notice)
 1. Find `agent` folder in SkyWalking release package
 1. Set `agent.service_name` in `config/agent.config`. Could be any String in English.
 1. Set `collector.backend_service` in `config/agent.config`. Default point to `127.0.0.1:11800`, only works for local backend.