No progress information for Maven
This commit is contained in:
parent
ac4b06f11b
commit
a42f8fcf75
6
.github/workflows/branch_build.yml
vendored
6
.github/workflows/branch_build.yml
vendored
@ -25,7 +25,7 @@ jobs:
|
||||
key: ubuntu-latest-m2-${{ hashFiles('**/pom.xml') }}
|
||||
restore-keys: ubuntu-latest-m2
|
||||
- name: Test with Maven
|
||||
run: mvn install -DskipTests
|
||||
run: mvn --no-transfer-progress install -DskipTests
|
||||
|
||||
testing:
|
||||
if: "github.repository != 'WebGoat/WebGoat'"
|
||||
@ -34,8 +34,8 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
args:
|
||||
- mvn -pl '!webgoat-integration-tests' test
|
||||
- mvn -pl webgoat-integration-tests test
|
||||
- mvn --no-transfer-progress -pl '!webgoat-integration-tests' test
|
||||
- mvn --no-transfer-progress -pl webgoat-integration-tests test
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: set up JDK 17
|
||||
|
2
.github/workflows/pr_build.yml
vendored
2
.github/workflows/pr_build.yml
vendored
@ -42,4 +42,4 @@ jobs:
|
||||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
|
||||
restore-keys: ${{ runner.os }}-m2
|
||||
- name: Build with Maven
|
||||
run: mvn package
|
||||
run: mvn --no-transfer-progress package
|
||||
|
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@ -38,8 +38,8 @@ jobs:
|
||||
echo "WEBGOAT_MAVEN_VERSION=${WEBGOAT_MAVEN_VERSION:1}" >> $GITHUB_ENV
|
||||
- name: Build with Maven
|
||||
run: |
|
||||
mvn versions:set -DnewVersion=${{ env.WEBGOAT_MAVEN_VERSION }}
|
||||
mvn install -DskipTests
|
||||
mvn --no-transfer-progress versions:set -DnewVersion=${{ env.WEBGOAT_MAVEN_VERSION }}
|
||||
mvn --no-transfer-progress install -DskipTests
|
||||
|
||||
- name: "Create release"
|
||||
uses: softprops/action-gh-release@v1
|
||||
|
Loading…
x
Reference in New Issue
Block a user