This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/3.0 by this push:
new 358bee2 Disable File System Test for all envs (#8076)
358bee2 is described below
commit 358bee2b0295bd358e312c014146c95fe287d770
Author: Albumen Kevin <[email protected]>
AuthorDate: Fri Jun 18 11:16:20 2021 +0800
Disable File System Test for all envs (#8076)
---
.github/workflows/build-and-test-3.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build-and-test-3.yml
b/.github/workflows/build-and-test-3.yml
index a7a3f66..e94260a 100644
--- a/.github/workflows/build-and-test-3.yml
+++ b/.github/workflows/build-and-test-3.yml
@@ -74,6 +74,8 @@ jobs:
matrix:
os: [ ubuntu-18.04, windows-2019 ]
jdk: [ 8, 11 ]
+ env:
+ DISABLE_FILE_SYSTEM_TEST: true
steps:
- uses: actions/checkout@v2
- name: "Set up JDK ${{ matrix.jdk }}"
@@ -92,8 +94,6 @@ jobs:
if: ${{ startsWith( matrix.os, 'ubuntu') }}
run: ./mvnw --batch-mode -U -e --no-transfer-progress clean test
verify -Pjacoco -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
-Dmaven.wagon.http.retryHandler.count=5 -DskipTests=false
-DskipIntegrationTests=false -Dcheckstyle.skip=false
-Dcheckstyle_unix.skip=false -Drat.skip=false -Dmaven.javadoc.skip=true
- name: "Test with Maven without Integration Tests"
- env:
- DISABLE_FILE_SYSTEM_TEST: true
timeout-minutes: 50
if: ${{ startsWith( matrix.os, 'windows') }}
run: ./mvnw --batch-mode -U -e --no-transfer-progress clean test
verify -Pjacoco -D"http.keepAlive=false" -D"maven.wagon.http.pool=false"
-D"maven.wagon.httpconnectionManager.ttlSeconds=120"
-D"maven.wagon.http.retryHandler.count=5" -DskipTests=false
-DskipIntegrationTests=true -D"checkstyle.skip=false"
-D"checkstyle_unix.skip=true" -D"rat.skip=false" -D"maven.javadoc.skip=true"