-
Notifications
You must be signed in to change notification settings - Fork 179
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(build): specify virtual env ubuntu version #7475
Conversation
Codecov Report
@@ Coverage Diff @@
## edge #7475 +/- ##
=======================================
Coverage ? 77.08%
=======================================
Files ? 197
Lines ? 16105
Branches ? 0
=======================================
Hits ? 12415
Misses ? 3690
Partials ? 0 Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, should we later pin the versions of windows + macos?
Is there some way to encapsulate this 'ubuntu-18.04'
a variable so it's easier to update (and less easy to miss instances of when updating?)
@@ -109,6 +109,9 @@ dist-macos-latest: dist-osx | |||
.PHONY: dist-ubuntu-latest | |||
dist-ubuntu-latest: dist-linux | |||
|
|||
.PHONY: dist-ubuntu-18.04 | |||
dist-ubuntu-latest: dist-linux |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure what's going on here, is this line supposed to be dist-ubuntu-18.04
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
they're aliases matching github actions OS names for easier calling in workflows, so i think it should just call dist-linux
like dist-ubuntu-latest
does
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Overview
Seems as though the latest ubuntu version is causing aws deployment issues.
PD deploys aren't working right now, though the other aws deploys seem to be fine. I think this is cuz github is still in the migration process.
This PR specifies ubuntu versions to the previously used "latest" version which is
ubuntu-18.04
. The other option is to addAWS_EC2_METADATA_DISABLED
as an env variable (see the issue above), but as @genehack mentioned in slack it's probably a good idea to specify versions so we don't wind up with more surprises.Changelog
Review requests
Make sure builds still work
Risk assessment
Med