This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch upgrade-dependencies
in repository https://gitbox.apache.org/repos/asf/skywalking.git
The following commit(s) were added to refs/heads/upgrade-dependencies by this
push:
new 7b5cd75 Add CI for JDK11 compiling.
7b5cd75 is described below
commit 7b5cd75bd83ce99683f3143ea0a35fd3b8ff18fd
Author: Wu Sheng <[email protected]>
AuthorDate: Mon Sep 28 21:02:39 2020 +0800
Add CI for JDK11 compiling.
---
.github/workflows/ci-it.yaml | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/.github/workflows/ci-it.yaml b/.github/workflows/ci-it.yaml
index 7d11580..e05f3ff 100644
--- a/.github/workflows/ci-it.yaml
+++ b/.github/workflows/ci-it.yaml
@@ -48,6 +48,19 @@ jobs:
- name: 'Check Dependencies Licenses'
run: tools/dependencies/check-LICENSE.sh
+ CI-on-JDK11:
+ runs-on: ubuntu-18.04
+ timeout-minutes: 90
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ submodules: true
+ - uses: actions/setup-java@v1
+ with:
+ java-version: 11
+ - name: 'Install & Test'
+ run: ./mvnw --batch-mode -P"agent,backend,ui,dist" clean verify install
+
CI-on-Windows:
runs-on: windows-latest
timeout-minutes: 90