-
Notifications
You must be signed in to change notification settings - Fork 15
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
Use less cross-compilations in CI tests #85
Conversation
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 agree we don't need to test all the architectures, but why remove sparcv9-sun-solaris
?
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 think we can merge this after addressing the solaris issue.
We aren't using any assembly code, but only the official C interface for our Android and MacOS implementation. It's exceedingly unlikely that the compilation for e.g. AArch64 could fail if it succeeds for x86-64.
ad444a1
to
e468f42
Compare
The link-time error for android was fixed in cross-rs, but the fix was not released, yet: cross-rs/cross#1222 (comment) |
I guess we only need to replace two lines in the changelog and we do a release: -## [0.1.54] - unreleased
+## [0.1.54] - 2023-03-21
### Changed
-- replace `winapi` dependency with `windows-sys` ([#91](https://github.com/strawlab/iana-time-zone/pull/91))
+- replace `winapi` dependency with `windows` ([#97](https://github.com/strawlab/iana-time-zone/pull/97)) I you want I can do that tomorrow. |
Yes, it would be great if you do a release. |
We aren't using any assembly code, but only the official C interface for our Android and MacOS implementation. It's exceedingly unlikely that the compilation for e.g. AArch64 could fail if it succeeds for x86-64.
Should hopefully resolve #80.