-
Notifications
You must be signed in to change notification settings - Fork 786
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
How to help with building F# for the CoreCLR #688
Comments
I feel I should comment here, because it seems to me that there are some misunderstandings about what DNX is/how it works. Either that, or I'm completely reading some of your post wrong, which is entirely possible.
This is simply not true. DNX has nothing to do with the CoreCLR. The CoreCLR is simply a possible target for DNX apps, much like the CoreCLR will eventually be a possible target for F# apps.
DNX (like any .NET app) runs on a CLR. Depending on what CLR you are currently using, it can load different assemblies. The 3 supported CLRs that DNX can run on is the Microsoft .NET CLR (the full CLR), Mono and CoreCLR. If you're running on the full CLR, any assembly that it can load, can be used in your DNX app (meaning basically anything that's ever written in F# that doesn't target Xamarin mobile). Also, F# already works just fine with DNX (https://github.com/fsprojects/fsharp-dnx), as long as you're running on either Mono or the full CLR. I'm not saying there isn't work to be done here (in memory compilation support for once), but some of these points are confusing, and some of them I'm either reading wrong, or they are just plain wrong. |
Excellent, thanks for the clarification. |
@KevinRansom i can help with 13 and 14 ( Cambridge (fsharp) and QA suite (fsharpqa) test suite ). Your points:
We tried before to identify a common test strategy, is lot of work and we need to change both test and test runner. Is a big step, let's improve incrementally. I think we can:
Let's use #90 , upgrate to nunit 3.0, add coreclr and fix xplat. That's easier because all process like csc.exe are started by a function, so only one point for fix xplat issues. After this first step (fsharp+fsharpqa working without changing test code), we can convert each test as unit/integration test, because is easier to see what combination are run and what the test does (bat files and perl runner is complex) |
I can only add my +1 to moving from perl/bat to nunit/xunit - it's currently a blocker to getting more contributors to the platform. I know that @latkin has suggested that there is a lot more to be done than just this, but I feel that just moving over to e.g. nunit - even though the tests in the fullness of time might end up being rewritten - would be a really good first step. |
@KevinRansom instead of a wiki page, can you add a milestone a question, with |
last two stuff, rly, sorry Can we have a chat with the ms team and all the contributors who want help? is easier to boostrap, discuss and choose a single strategy /cc @NumberByColors @KevinRansom ( sigh @latkin we miss you ). Some todo (for example 1 ci, 3 nuget for lkg, 4, 5 fsharp.core nuget, 11, 21) is already done in openfsharp repo, it's easier to leverage work already done there. it would be really sad to see two different FSharp.Core nuget package, created with two different build script etc. With coreclr you need to cleanup your internal build server anyway, so let's improve the infrastructure (build/test) this time. |
@enricosada Okay I re-opened #90. If there is any additional work you want to do on it, feel free to. Let me know when you believe it's in a good shape to pull. Can we get more eyes on this PR, since it's a big one, I will probably not get a chance to look at it in detail until the weekend. I am conflicted about whether to do this in master, coreclr or it's own branch. Please make a proposal. |
FYI; last I checked, xunit supports CoreCLR (dnxcore), NUnit did not (might have changed since though). At least, the DNX team uses XUnit to test DNX and the new ASP.NET 5 libs. |
@enricosada we will try to organize a stand-up skype call It will be at 10:00 am some morning of the week probably Monday. 10:00 am because it's really hard for me to get up earlier, and the Europeans which constitutes many of the community are still awake. It won't be next week, because of the MVP summit. If it works out we can try to do it regularly. Kevin |
@KevinRansom If you want someone who have a good amount of experience with DNX and F# integration with it I'm generally available. Just FYI. However, wrt what needs to be done to get F# working on the CoreCLR I'm afraid I won't be too much of help. |
@KevinRansom awesome, really thx. @Alxandr dnx is a good part of the coreclr experience, thx for your work! |
I just took a brief look into the coreclr branch. I wonder how things are planned in regards of the project.lock.json files. It seems in the coreclr branch these files are commited. Ok course we could opt-out and add project.json.lock files to gitignore. But then we don't pin transitive dependencies any more (in project.json we only have top-level dependencies). If I understand the process correctly this basically means it will install whatever transitive dependency version fits at the time of resolution. So different checkouts (CI, coworker, release) may getting different versions of the transitive dependencies. Is there already some discusion about this in the F# space? I know there is aspnet/dnx#2332 but it's totally unclear to me when and if things are changing. |
Yes, |
@KevinRansom two stuff some issue can be developed inside master branch (like portablepdb, cleaup tests) because are usefull (can be merged later in coreclr branch) The real priority i think is the build server (enable roslyn jenkins and appveyor) because outside ms is difficult to know if the branch is green (and we can clone and start contribute) or is a problem in my machine or the code does not compile. If i see the build server, i can clone the repo at the latest working commit Also we should run like roslyn two build of same coreclr branch, one with net40, one with coreclr. |
Where's the guide for building the coreclr branch? I looked in these places and didn't see the build instructions:
plus the DEVGUIDE.md in the coreclr branch thanks |
I think we can close this now? |
Okay now that we have a branch that builds the coreclr version of F# I think it is time that the load can be shared. @ctaggart @rojepp have both made a great start. It's probably going to be more useful if we agree what needs to be done and then work on each item to completion.
These are the most immediate items on our agenda. That means they are the items we believe need to be completed successfully for us to get to the end point which is an OSS project that builds a platform independent F# compiler and REPL that runs on Windows/Mac and Linux.
This list is nowhere near complete feel free to open issues with suggestions about what needs to be done, and in what order. I guess we will manage it, in a similar way to how we managed the F# 4.0 work. It should be noted that PR's not related to this work are still very welcome and will be gratefully received.
Status Page: https://github.com/Microsoft/visualfsharp/wiki/F%23-for-CoreCLR---Status
About Tooling:
We aim to conforms to the latest development tools standards of the DotNet Foundation OSS projects. (Please note: that F# is associated with the F# Foundation http://www.fsharp.org and not the .NET Foundation).
In general we prefer solutions based on the tools selected by the Roslyn, NetFX and CoreCLR teams. The benefit of aligning with those teams, is that we can leverage their team resources, staff, contributors and learnings. It is our preference that where the .NetCore, .NetFX and Roslyn team have picked a tool, we don't use an alternate tool that does a similar Job.
About DNX:
DNX is a packaging of the CoreCLR. When Roslyn Compiler ships it too will be a packaging of the CoreCLR as will the F# Compiler. At any one moment in time, we may all ship with different versions of the CoreCLR and the various managed assemblies that comprise it. We will not bind the F# compiler to a particular packaging, we will pick which versions of all of the dependencies that we use. If we download specific versions of DNX or Roslyn it will be a point in time fix to a specific need.
In order to ensure that the F# compiler is compatible with a specific build of DNX we need to have some test cases that verify that the F# compiler does the right thing W.R.T. DNX.
Things to do:
This is just a start at the list, I'm sure there are many thousands of items I left off, feel free to start issues discussing the omissions.
There will be a status page where the list of items and status of them will be kept up to date and progress is recorded similar to how we did F# 4.0.
* Status: https://github.com/Microsoft/visualfsharp/wiki/F%23-for-CoreCLR---Status*
Thanks
Kevin
The text was updated successfully, but these errors were encountered: