Skip to content

Commit 4a21bd2

Browse files
hboutemyhengyunabc
authored andcommitted
mvn -ntp: no transfer progress
1 parent f4899f0 commit 4a21bd2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build-vmtool.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
java-version: '8'
1515
distribution: 'adopt'
1616
- name: Build with Maven
17-
run: ./mvnw package
17+
run: ./mvnw -V -ntp package
1818
- uses: actions/upload-artifact@v3
1919
with:
2020
name: lib
@@ -30,7 +30,7 @@ jobs:
3030
java-version: '8'
3131
distribution: 'adopt'
3232
- name: Build with Maven
33-
run: ./mvnw package
33+
run: ./mvnw -V -ntp package
3434
- uses: actions/upload-artifact@v3
3535
with:
3636
name: lib
@@ -46,7 +46,7 @@ jobs:
4646
java-version: '8'
4747
distribution: 'adopt'
4848
- name: Build with Maven
49-
run: ./mvnw package
49+
run: ./mvnw -V -ntp package
5050
- uses: actions/upload-artifact@v3
5151
with:
5252
name: lib
@@ -73,7 +73,7 @@ jobs:
7373

7474
run: |
7575
apt update && apt install openjdk-8-jdk g++ -y
76-
./mvnw package -pl common,arthas-vmtool
76+
./mvnw -V -ntp package -pl common,arthas-vmtool
7777
cp arthas-vmtool/target/libArthas* lib/
7878
- uses: actions/upload-artifact@v3
7979
with:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
java-version: '8'
1717
distribution: 'adopt'
1818
- name: Build with Maven
19-
run: mvn clean package -P full
19+
run: mvn -V -ntp clean package -P full
2020

2121
- name: Release
2222
uses: softprops/action-gh-release@v1

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
distribution: 'zulu'
1818
cache: 'maven'
1919
- name: Build with Maven
20-
run: mvn clean install -P full
20+
run: mvn -V -ntp clean install -P full
2121

2222
windows_build:
2323
runs-on: windows-2019
@@ -33,7 +33,7 @@ jobs:
3333
distribution: 'zulu'
3434
cache: 'maven'
3535
- name: Build with Maven
36-
run: mvn clean install -P full
36+
run: mvn -V -ntp clean install -P full
3737

3838
macos_build:
3939
runs-on: ${{ matrix.os }}
@@ -52,4 +52,4 @@ jobs:
5252
distribution: 'zulu'
5353
cache: 'maven'
5454
- name: Build with Maven
55-
run: mvn clean install -P full
55+
run: mvn -V -ntp clean install -P full

0 commit comments

Comments
 (0)