-
-
Notifications
You must be signed in to change notification settings - Fork 888
Add ARM hosted runners #3018
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
base: main
Are you sure you want to change the base?
Add ARM hosted runners #3018
Conversation
Added macos-26 and ubuntu-2204 github runners which run on arm
We now use the tolerant Image Comparer for now.
This disables all tests which need libgdiplus for macs with arm. The hosted runners do not have libgdiplus installed
| public void BmpDecoder_CanDecode_8Bit<TPixel>(TestImageProvider<TPixel> provider) | ||
| where TPixel : unmanaged, IPixel<TPixel> | ||
| { | ||
| if (TestEnvironment.IsMacOS && TestEnvironment.IsArm64Process) |
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 don’t think we should be disabling tests. We’ve been running on ARM for a while
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.
That's for missing libgdiplus
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.
Isn't that because the build script restricts installation to ubuntu?
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.
Mac does not have apt. You must use homebrew. I can try it out. I haven't because I could not get mono-libgdiplus working on my machine 🙈
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.
Ah yes, seems well supported though.
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.
seems supported. but it seems that it is not that easy. Tests are failing.
Added macos-26 and ubuntu-2204 github-runners. Those run on ARM. With this this architecture can be tested on every run and not just on demand like before.