reduce maven logging for downloading artifacts

This commit is contained in:
Mark Pollack
2024-12-02 15:46:40 -05:00
parent c7d64d560f
commit d02c8f6e10
3 changed files with 6 additions and 6 deletions

View File

@@ -29,8 +29,8 @@ runs:
- name: Install
shell: bash
run: cd spring-ai && ./mvnw install -DskipTests
run: cd spring-ai && ./mvnw -ntp install -DskipTests
- name: Run Spring AI Autoconfigure test
shell: bash
run: cd spring-ai && ./mvnw -pl spring-ai-spring-boot-autoconfigure -Pintegration-tests -Dfailsafe.rerunFailingTestsCount=2 verify
run: cd spring-ai && ./mvnw -ntp -pl spring-ai-spring-boot-autoconfigure -Pintegration-tests -Dfailsafe.rerunFailingTestsCount=2 verify

View File

@@ -38,8 +38,8 @@ runs:
- name: Install
shell: bash
run: cd spring-ai && ./mvnw install -DskipTests
run: cd spring-ai && ./mvnw -ntp install -DskipTests
- name: Run ${{ inputs.model-name }} model tests
shell: bash
run: cd spring-ai && ./mvnw -pl models/spring-ai-${{ inputs.model-name }} -Pintegration-tests ${{ inputs.maven-properties }} -Dfailsafe.rerunFailingTestsCount=2 verify
run: cd spring-ai && ./mvnw -ntp -pl models/spring-ai-${{ inputs.model-name }} -Pintegration-tests ${{ inputs.maven-properties }} -Dfailsafe.rerunFailingTestsCount=2 verify

View File

@@ -38,8 +38,8 @@ runs:
- name: Install
shell: bash
run: cd spring-ai && ./mvnw install -DskipTests
run: cd spring-ai && ./mvnw -ntp install -DskipTests
- name: Run integration tests
shell: bash
run: cd spring-ai && ./mvnw -pl ${{ inputs.modules }} -Pintegration-tests ${{ inputs.maven-properties }} -Dfailsafe.rerunFailingTestsCount=2 verify
run: cd spring-ai && ./mvnw -ntp -pl ${{ inputs.modules }} -Pintegration-tests ${{ inputs.maven-properties }} -Dfailsafe.rerunFailingTestsCount=2 verify