-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
azure-pipelines: test packages on more configuration #13348
Conversation
Attempts to test packages on more configurations to see if we can catch out any issues related to changes related to those configurations.
|
looks like only 2 packages would break:
and https://github.com/status-im/nim-chronos/ (see status-im/nim-chronos#74) maybe simply disable these conditionally in important_packages.nim, eg: when not defined(osx):
pkg "chronos", "", true and then these could be fixed later |
What error appears with NiGui? I the comment above I just see "reBuildFailed". |
relevant error: full logs:
|
How can we fix this? I'm not familiar with macOS. In simonkrauter/NiGui#63 it was proposed to compile with |
where I used it works at least on my local OSX machine
[EDIT] |
Ping @alaviss |
This PR is rather redundant now, we now have package testing for macOS and Linux upstream. |
@alaviss but testing on windows should definitely be done; to avoid going in circles (see #13921 which moved from windows to linux), I suggest doing what I proposed here: #13954 (comment)
|
Attempts to test packages on more configurations to see if we can catch
out any issues related to changes related to those configurations.
Not sure if this is a good idea so only a draft for now.