-
Notifications
You must be signed in to change notification settings - Fork 385
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
Re-enable codegen on Windows #2591
Comments
See #2591: > Codegen (specifically, `re_types_builder/build.rs` & `re_types/build.rs`) has been disabled on Windows in #2592 because it was somehow computing different sha256 sums (??) and thus breaking the CI. > > This isn't too bad of an issue as it only affects contributors on windows that are trying to modify IDL definitions but should nonetheless be fixed sooner than later. ### What ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) * [x] I've included a screenshot or gif (if applicable) * [x] I have tested [demo.rerun.io](https://demo.rerun.io/pr/{{ pr.number }}) (if applicable) - [PR Build Summary](https://build.rerun.io/pr/{{ pr.number }}) - [Docs preview](https://rerun.io/preview/{{ "pr:%s"|format(pr.branch)|encode_uri_component }}/docs) - [Examples preview](https://rerun.io/preview/{{ "pr:%s"|format(pr.branch)|encode_uri_component }}/examples)
The sha-mismatch is likely another case where we are likely hitting line-ending inconsistencies introduced by git. Also, when generating the files on windows we need to take care to normalize our path-separators. Running |
|
Codegen (specifically,
re_types_builder/build.rs
&re_types/build.rs
) has been disabled on Windows in #2592 because it was somehow computing different sha256 sums (??) and thus breaking the CI.This isn't too bad of an issue as it only affects contributors on windows that are trying to modify IDL definitions but should nonetheless be fixed sooner than later.
The text was updated successfully, but these errors were encountered: