This is an automated email from the ASF dual-hosted git repository.
jiajunwang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git
The following commit(s) were added to refs/heads/master by this push:
new bf7d4b2 Add -q option to the CI mvn test to avoid verbose output.
bf7d4b2 is described below
commit bf7d4b27b8b76462ebf4938f4b1410cf4337f7d1
Author: Jiajun Wang <[email protected]>
AuthorDate: Wed Sep 2 12:24:43 2020 -0700
Add -q option to the CI mvn test to avoid verbose output.
---
.github/workflows/Helix-CI.yml | 14 +++++++-------
.github/workflows/Helix-PR-CI.yml | 14 +++++++-------
2 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/.github/workflows/Helix-CI.yml b/.github/workflows/Helix-CI.yml
index f4bd20d..057e894 100644
--- a/.github/workflows/Helix-CI.yml
+++ b/.github/workflows/Helix-CI.yml
@@ -19,23 +19,23 @@ jobs:
- name: Build with Maven
run: mvn clean install -Dmaven.test.skip.exec=true
- name: Test metrics-common
- run: cd metrics-common; mvn test
+ run: cd metrics-common; mvn -q test
if: ${{ success() || failure() }}
- name: Test metadata-store-directory-common
- run: cd metadata-store-directory-common; mvn test
+ run: cd metadata-store-directory-common; mvn -q test
if: ${{ success() || failure() }}
- name: Test zookeeper-api
- run: cd zookeeper-api; mvn test
+ run: cd zookeeper-api; mvn -q test
if: ${{ success() || failure() }}
- name: Test helix-common
- run: cd helix-common; mvn test
+ run: cd helix-common; mvn -q test
if: ${{ success() || failure() }}
- name: Test helix-lock
- run: cd helix-lock; mvn test
+ run: cd helix-lock; mvn -q test
if: ${{ success() || failure() }}
- name: Test helix-rest
- run: cd helix-rest; mvn test
+ run: cd helix-rest; mvn -q test
if: ${{ success() || failure() }}
- name: Test helix-core
- run: cd helix-core; mvn test
+ run: cd helix-core; mvn -q test
if: ${{ success() || failure() }}
diff --git a/.github/workflows/Helix-PR-CI.yml
b/.github/workflows/Helix-PR-CI.yml
index 2bc3411..4aef5f3 100644
--- a/.github/workflows/Helix-PR-CI.yml
+++ b/.github/workflows/Helix-PR-CI.yml
@@ -24,23 +24,23 @@ jobs:
- name: Build with Maven
run: mvn clean install -Dmaven.test.skip.exec=true
- name: Test metrics-common
- run: cd metrics-common; mvn test
+ run: cd metrics-common; mvn -q test
if: ${{ contains(steps.file-diff.outputs.all, 'metrics-common') &&
(success() || failure()) }}
- name: Test metadata-store-directory-common
- run: cd metadata-store-directory-common; mvn test
+ run: cd metadata-store-directory-common; mvn -q test
if: ${{ contains(steps.file-diff.outputs.all,
'metadata-store-directory-common') && (success() || failure()) }}
- name: Test zookeeper-api
- run: cd zookeeper-api; mvn test
+ run: cd zookeeper-api; mvn -q test
if: ${{ contains(steps.file-diff.outputs.all, 'zookeeper-api') &&
(success() || failure()) }}
- name: Test helix-common
- run: cd helix-common; mvn test
+ run: cd helix-common; mvn -q test
if: ${{ contains(steps.file-diff.outputs.all, 'helix-common') &&
(success() || failure()) }}
- name: Test helix-lock
- run: cd helix-lock; mvn test
+ run: cd helix-lock; mvn -q test
if: ${{ contains(steps.file-diff.outputs.all, 'helix-lock') &&
(success() || failure()) }}
- name: Test helix-rest
- run: cd helix-rest; mvn test
+ run: cd helix-rest; mvn -q test
if: ${{ contains(steps.file-diff.outputs.all, 'helix-rest') &&
(success() || failure()) }}
- name: Test helix-core
- run: cd helix-core; mvn test
+ run: cd helix-core; mvn -q test
if: ${{ contains(steps.file-diff.outputs.all, 'helix-core') &&
(success() || failure()) }}