Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-vmtool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
java-version: '8'
distribution: 'adopt'
- name: Build with Maven
run: ./mvnw package
run: ./mvnw -V -ntp package
- uses: actions/upload-artifact@v3
with:
name: lib
Expand All @@ -30,7 +30,7 @@ jobs:
java-version: '8'
distribution: 'adopt'
- name: Build with Maven
run: ./mvnw package
run: ./mvnw -V -ntp package
- uses: actions/upload-artifact@v3
with:
name: lib
Expand All @@ -46,7 +46,7 @@ jobs:
java-version: '8'
distribution: 'adopt'
- name: Build with Maven
run: ./mvnw package
run: ./mvnw -V -ntp package
- uses: actions/upload-artifact@v3
with:
name: lib
Expand All @@ -73,7 +73,7 @@ jobs:

run: |
apt update && apt install openjdk-8-jdk g++ -y
./mvnw package -pl common,arthas-vmtool
./mvnw -V -ntp package -pl common,arthas-vmtool
cp arthas-vmtool/target/libArthas* lib/
- uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
java-version: '8'
distribution: 'adopt'
- name: Build with Maven
run: mvn clean package -P full
run: mvn -V -ntp clean package -P full

- name: Release
uses: softprops/action-gh-release@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
distribution: 'zulu'
cache: 'maven'
- name: Build with Maven
run: mvn clean install -P full
run: mvn -V -ntp clean install -P full

windows_build:
runs-on: windows-2019
Expand All @@ -33,7 +33,7 @@ jobs:
distribution: 'zulu'
cache: 'maven'
- name: Build with Maven
run: mvn clean install -P full
run: mvn -V -ntp clean install -P full

macos_build:
runs-on: ${{ matrix.os }}
Expand All @@ -52,4 +52,4 @@ jobs:
distribution: 'zulu'
cache: 'maven'
- name: Build with Maven
run: mvn clean install -P full
run: mvn -V -ntp clean install -P full
Loading