-
Notifications
You must be signed in to change notification settings - Fork 585
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
Disable cache in CLI #1535
Disable cache in CLI #1535
Conversation
@nosami Can you check if this works? |
Yes. Give me a minute. I would expect it to work apart from the caching tests :) |
Same error
|
Are the tests using the CLI? |
No |
@nosami I looked at the code again. I think the binary should actually work (even when the tests don't). |
I've only managed to repro this bug so far through the test suite. The FAKE binary works against FCS |
Ok so mono seems to choke with the following code open System
type MyAttr() =
inherit Attribute()
do failwith "test"
[<MyAttr()>]
type Test () =
do ignore ()
[<assembly: MyAttr()>]
do () @nosami can you verify? At least that's the one we are using in the Test-case that probably failed. |
|
you intendation is off. And you need to run it with FAKE as fsharpi is probably just working (as there is no cache) |
oops. paste bug
Looks some error with |
Ah sorry I failed the quotes because of escaping in the C# string :) |
Yeah.. just spotted :) |
|
So at least we have a more minimal repro now. I guess we can verify now if the latest version (with the patch of this PR) is working. Thanks for the quick feedback. |
It doesn't work using your patch
|
Ah so mono is crashing completely. Oh |
Yeah... and running the same script with fsharpi is fine. |
Looks like a Mono/Cecil issue |
this is released now. |
Next try: #1536 |
No description provided.