2323 - master
2424 tags :
2525 - ' v*'
26-
26+
27+ env :
28+ MAVEN_OPTS : -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:-UseGCOverheadLimit
29+ CODECOV_TOKEN : d2065307-8f01-4637-9715-2781ef096db7
2730
2831jobs :
2932 CI :
3033 runs-on : ubuntu-18.04
3134 timeout-minutes : 90
32- strategy :
33- fail-fast : true
3435 steps :
3536 - uses : actions/checkout@v2
36- # In the checkout@v2, it doesn't support git submodule. Execute the commands manually.
3737 - name : checkout submodules
3838 shell : bash
3939 run : |
@@ -44,20 +44,16 @@ jobs:
4444 java-version : 8
4545 - name : ' Install & Test'
4646 run : |
47- export MAVEN_OPTS='-XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:-UseGCOverheadLimit -Xmx3g'
4847 ./mvnw --batch-mode -P"agent,backend,ui,dist,CI-with-IT" clean cobertura:cobertura verify install javadoc:javadoc
49- CODECOV_TOKEN="d2065307-8f01-4637-9715-2781ef096db7" bash <(curl -s https://codecov.io/bash)
48+ bash <(curl -s https://codecov.io/bash)
5049 - name : ' Check Dependencies Licenses'
5150 run : tools/dependencies/check-LICENSE.sh
5251
5352 CI-on-Windows :
54- runs-on : Windows -latest
53+ runs-on : windows -latest
5554 timeout-minutes : 90
56- strategy :
57- fail-fast : true
5855 steps :
5956 - uses : actions/checkout@v2
60- # In the checkout@v2, it doesn't support git submodule. Execute the commands manually.
6157 - name : checkout submodules
6258 shell : bash
6359 run : |
@@ -67,19 +63,14 @@ jobs:
6763 with :
6864 java-version : 8
6965 - name : ' Install & Test'
70- run : |
71- set MAVEN_OPTS='-XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:-UseGCOverheadLimit -Xmx3g'
72- ./mvnw --batch-mode -P"agent,backend,ui,dist" clean verify install
66+ run : ./mvnw --batch-mode -P"agent,backend,ui,dist" clean verify install
7367
7468
7569 CI-on-MacOS :
7670 runs-on : macos-latest
7771 timeout-minutes : 90
78- strategy :
79- fail-fast : true
8072 steps :
8173 - uses : actions/checkout@v2
82- # In the checkout@v2, it doesn't support git submodule. Execute the commands manually.
8374 - name : checkout submodules
8475 shell : bash
8576 run : |
8980 with :
9081 java-version : 8
9182 - name : ' Install & Test'
92- run : |
93- export MAVEN_OPTS='-XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:-UseGCOverheadLimit -Xmx3g'
94- ./mvnw --batch-mode -P"agent,backend,ui,dist" clean verify install
83+ run : ./mvnw --batch-mode -P"agent,backend,ui,dist" clean verify install
0 commit comments