-
Notifications
You must be signed in to change notification settings - Fork 185
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
Remove GN generated files from repo #4534
Conversation
exec --fail-on-error cargo generate-lockfile | ||
|
||
# These versions should match what is in icu_capi_gn Cargo.toml | ||
exec --fail-on-error cargo update proc-macro2 --precise 1.0.75 |
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.
thought: can we specify this with an =
bound in Cargo.toml
?
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.
i guess that would end up with them getting public gn targets. hm.
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.
Would it work for the cargo resolver if I listed the versions as build-dependencies or dev-dependencies?
@@ -1,3 +1,6 @@ | |||
out/ | |||
third_party_tools/ | |||
vendor/ | |||
.cargo/config | |||
icu4x/BUILD.gn | |||
Cargo.lock |
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.
question: the file is gitignored but still checked in to git. intentional?
(I can see wanting to do this for a file that you want to "seed" but don't care about diffs for, and will require an explicit git add to modify. which seems appropriate-ish)
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.
It was supposed to be deleted. Fixed
Part of #3006
Including some changes in the Cargo Make script for this to work.
The directory can be moved in a clean follow-up PR.