Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: suppress download progress #2496

Merged
merged 1 commit into from
Feb 21, 2024
Merged

Conversation

JoeWang1127
Copy link
Collaborator

In this PR:

  • Suppress logs of download progress when running fmt plugin.

@product-auto-label product-auto-label bot added the size: xs Pull request size is extra small. label Feb 21, 2024
Copy link

Quality Gate Passed Quality Gate passed for 'gapic-generator-java-root'

Issues
0 New issues

Measures
0 Security Hotspots
No data about Coverage
No data about Duplication

See analysis details on SonarCloud

Copy link

Quality Gate Passed Quality Gate passed for 'java_showcase_integration_tests'

Issues
0 New issues

Measures
0 Security Hotspots
No data about Coverage
No data about Duplication

See analysis details on SonarCloud

@JoeWang1127
Copy link
Collaborator Author

No downloading progress in log.

+ mvn fmt:format -V --batch-mode --no-transfer-progress
Apache Maven 3.8.8 (4c87b05d9aedce574290d1acc98575ed5eb6cd39)
Maven home: /usr/share/apache-maven-3.8.8
Java version: 11.0.22, vendor: Eclipse Adoptium, runtime: /usr/lib/jvm/temurin-11-jdk-amd64
Default locale: en, platform encoding: UTF-8
OS name: "linux", version: "6.2.0-1019-azure", arch: "amd64", family: "unix"
[INFO] Scanning for projects...
[INFO] Inspecting build with total of 5 modules...
[INFO] Installing Nexus Staging features:
[INFO]   ... total of 5 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO] 
[INFO] Google Apigee Connect Parent                                       [pom]
[INFO] proto-google-cloud-apigee-connect-v1                               [jar]
[INFO] grpc-google-cloud-apigee-connect-v1                                [jar]
[INFO] Google Apigee Connect                                              [jar]
[INFO] Google Apigee Connect BOM                                          [pom]
[INFO] 
[INFO] --------< com.google.cloud:google-cloud-apigee-connect-parent >---------
[INFO] Building Google Apigee Connect Parent 2.35.0                       [1/5]
[INFO]   from pom.xml
[INFO] --------------------------------[ pom ]---------------------------------
[INFO] 
[INFO] --- fmt-maven-plugin:2.9:format (default-cli) @ google-cloud-apigee-connect-parent ---
[INFO] Skipping format check: project uses 'pom' packaging
[INFO] 
[INFO] ------< com.google.api.grpc:proto-google-cloud-apigee-connect-v1 >------
[INFO] Building proto-google-cloud-apigee-connect-v1 2.35.0               [2/5]
[INFO]   from proto-google-cloud-apigee-connect-v1/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- fmt-maven-plugin:2.9:format (default-cli) @ proto-google-cloud-apigee-connect-v1 ---
Warning:  Test source directory '/home/runner/work/sdk-platform-java/sdk-platform-java/output/google-cloud-java/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/test/java' does not exist, ignoring.
[INFO] Processed 30 files (29 reformatted).
[INFO] 
[INFO] ------< com.google.api.grpc:grpc-google-cloud-apigee-connect-v1 >-------
[INFO] Building grpc-google-cloud-apigee-connect-v1 2.35.0                [3/5]
[INFO]   from grpc-google-cloud-apigee-connect-v1/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- fmt-maven-plugin:2.9:format (default-cli) @ grpc-google-cloud-apigee-connect-v1 ---
Warning:  Test source directory '/home/runner/work/sdk-platform-java/sdk-platform-java/output/google-cloud-java/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/src/test/java' does not exist, ignoring.
[INFO] Processed 2 files (2 reformatted).
[INFO] 
[INFO] ------------< com.google.cloud:google-cloud-apigee-connect >------------
[INFO] Building Google Apigee Connect 2.35.0                              [4/5]
[INFO]   from google-cloud-apigee-connect/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- fmt-maven-plugin:2.9:format (default-cli) @ google-cloud-apigee-connect ---
[INFO] Processed 22 files (3 reformatted).
[INFO] 
[INFO] ----------< com.google.cloud:google-cloud-apigee-connect-bom >----------
[INFO] Building Google Apigee Connect BOM 2.35.0                          [5/5]
[INFO]   from google-cloud-apigee-connect-bom/pom.xml
[INFO] --------------------------------[ pom ]---------------------------------
[INFO] 
[INFO] --- fmt-maven-plugin:2.9:format (default-cli) @ google-cloud-apigee-connect-bom ---
[INFO] Skipping format check: project uses 'pom' packaging
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for Google Apigee Connect Parent 2.35.0:
[INFO] 
[INFO] Google Apigee Connect Parent ....................... SUCCESS [  0.078 s]
[INFO] proto-google-cloud-apigee-connect-v1 ............... SUCCESS [  1.424 s]
[INFO] grpc-google-cloud-apigee-connect-v1 ................ SUCCESS [  0.059 s]
[INFO] Google Apigee Connect .............................. SUCCESS [  0.170 s]
[INFO] Google Apigee Connect BOM .......................... SUCCESS [  0.003 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  5.[751](https://github.com/googleapis/sdk-platform-java/actions/runs/7996094971/job/21838647050?pr=2496#step:7:752) s
[INFO] Finished at: 2024-02-21T22:23:08Z
[INFO] ------------------------------------------------------------------------

@JoeWang1127 JoeWang1127 marked this pull request as ready for review February 21, 2024 22:45
@JoeWang1127 JoeWang1127 requested a review from a team as a code owner February 21, 2024 22:45
@JoeWang1127 JoeWang1127 added the owlbot:run Add this label to trigger the Owlbot post processor. label Feb 21, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Feb 21, 2024
@JoeWang1127 JoeWang1127 enabled auto-merge (squash) February 21, 2024 22:45
@JoeWang1127 JoeWang1127 merged commit 49e4eb0 into main Feb 21, 2024
30 of 31 checks passed
@JoeWang1127 JoeWang1127 deleted the chore/suppress-download-logs branch February 21, 2024 23:22
lqiu96 pushed a commit that referenced this pull request Feb 26, 2024
In this PR:
- Suppress logs of download progress when running `fmt` plugin.
lqiu96 pushed a commit that referenced this pull request Feb 28, 2024
In this PR:
- Suppress logs of download progress when running `fmt` plugin.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
size: xs Pull request size is extra small.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants