Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9d70355

Browse files
committedJul 24, 2024·
ci: cancel quiet build
1 parent 3f8159d commit 9d70355

6 files changed

+7
-7
lines changed
 

‎.github/workflows/DB-CE.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Install IGinX with Maven
6868
shell: bash
6969
run: |
70-
mvn clean package -DskipTests -P-format -q
70+
mvn clean package -DskipTests -P-format
7171
7272
# 第 1 阶段测试开始==========================================
7373
- name: Prepare CapExp environment oriHasDataExpHasData

‎.github/workflows/case-regression.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Install IGinX with Maven
5757
shell: bash
5858
run: |
59-
mvn clean package -DskipTests -P-format -q
59+
mvn clean package -DskipTests -P-format
6060
6161
- name: Write Conf
6262
uses: ./.github/actions/confWriter

‎.github/workflows/remote-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- name: Install IGinX with Maven
8080
shell: bash
8181
run: |
82-
mvn clean package -DskipTests -P-format -q
82+
mvn clean package -DskipTests -P-format
8383
8484
- if: runner.os == 'Windows'
8585
name: Build & Run Client image

‎.github/workflows/standalone-test-pushdown.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Install IGinX with Maven
6767
shell: bash
6868
run: |
69-
mvn clean package -DskipTests -P-format -q
69+
mvn clean package -DskipTests -P-format
7070
7171
- name: Change IGinX config
7272
uses: ./.github/actions/confWriter

‎.github/workflows/standalone-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Install IGinX with Maven
6363
shell: bash
6464
run: |
65-
mvn clean package -DskipTests -P-format -q
65+
mvn clean package -DskipTests -P-format
6666
6767
- name: Change IGinX config
6868
uses: ./.github/actions/confWriter

‎.github/workflows/tpc-h.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
shell: bash
104104
run: |
105105
cd IGinX
106-
mvn clean package -DskipTests -P-format -q
106+
mvn clean package -DskipTests -P-format
107107
108108
- name: Change Old IGinX Config
109109
uses: ./.github/actions/confWriter
@@ -115,7 +115,7 @@ jobs:
115115

116116
- name: Install New IGinX with Maven
117117
shell: bash
118-
run: mvn clean package -DskipTests -P-format -q
118+
run: mvn clean package -DskipTests -P-format
119119

120120
- name: Change New IGinX Config
121121
uses: ./.github/actions/confWriter

0 commit comments

Comments
 (0)
Please sign in to comment.