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

added missing modules download #1044

Merged
merged 2 commits into from Jan 4, 2022
Merged

Conversation

jklaw90
Copy link
Contributor

@jklaw90 jklaw90 commented Jan 4, 2022

I missed two more modules in PR-1043
Now the action builds skipping the all downloads from those modules.

@codecov
Copy link

codecov bot commented Jan 4, 2022

Codecov Report

Merging #1044 (6499d0e) into master (da733e5) will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master    #1044   +/-   ##
=======================================
  Coverage   98.11%   98.11%           
=======================================
  Files          48       48           
  Lines        2071     2071           
=======================================
  Hits         2032     2032           
  Misses         30       30           
  Partials        9        9           

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update da733e5...6499d0e. Read the comment docs.

Comment on lines 41 to 43
cd tools && go mod download && cd -
cd benchmarks && go mod download && cd -
cd zapgrpc/internal/test && go mod download && cd -
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can use subshells to avoid cding back.

Suggested change
cd tools && go mod download && cd -
cd benchmarks && go mod download && cd -
cd zapgrpc/internal/test && go mod download && cd -
(cd tools && go mod download)
(cd benchmarks && go mod download)
(cd zapgrpc/internal/test && go mod download)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good call!

@jklaw90 jklaw90 requested a review from abhinav January 4, 2022 03:42
@abhinav abhinav merged commit 79cb86f into uber-go:master Jan 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants