-
Notifications
You must be signed in to change notification settings - Fork 77
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
Add support for win64-aarch64(arm64) platform. #695
base: master
Are you sure you want to change the base?
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.
Thank you a lot @Cauacs for your contribution! Overall it looks fine but please take care of my inline comment. We basically should handle the arm64 architecture similar across all platforms.
@@ -19,6 +19,9 @@ | |||
({'platform': 'win64'}, | |||
'2013-10-01-03-02-04-mozilla-central-firefox-27.0a1.en-US.win64.installer.exe', | |||
'firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.win64.installer.exe'), | |||
({'platform': 'win-arm64'}, | |||
'2013-10-01-03-02-04-mozilla-central-firefox-27.0a1.en-US.win64-aarch64.installer.exe', | |||
'firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.win64-aarch64.installer.exe'), |
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.
@Cauacs given that those aarch64 builds for Windows are also available for beta/release builds, would you mind also adding tests for the candidate and release scrapers? That would give us full coverage.
If you don't have the time to do that please let me know and I'll get them added. Thanks!
Fixes #681