-
-
Notifications
You must be signed in to change notification settings - Fork 346
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 Mono 6.6 and more recent versions of everything else #2964
Conversation
I guess you tested on Linux? I currently don't have access to my Linux machine, but on Windows it works fine for me after updating the VS build tools (had no NetCore 3.1 installed yet). |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
OK, I managed to restore a Mono 6.6 install, and I'm able to compile and run CKAN. |
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.
As I already wrote, works on W10, can't test on Linux as I'm on the road currently.
I'll give @Olympic1 another few days to weigh in, in case I've missed something important about these versions. |
I'm still away from home. Will test on Manjaro when I get home. |
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.
Successfully build on Windows
Problem
Recent net-core builds have been failing.
Today my Ubuntu upgraded from Mono 6.6 to Mono 6.8, and suddenly I was affected locally by the same problem for all builds.
Cause
See cake-build/cake#2695, it looks like a check was added to Mono in mono/mono#16446 to reject full pathnames for assemblies, but unfortunately parts of
Microsoft.CodeAnalysis
(closed source?) appear to pass full pathnames, which breaks Cake. This will probably need to be fixed on the Mono side, but I don't yet have enough information for a useful report.The net-core builds were set to
mono: latest
instead of a specific version like everything else, so when this (apparently) broken version shipped we started using it immediately.Changes
To fix the error:
latest
General upkeep: