Skip to content
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

Repo alignment - How to enable xplat workflow for easy contribution #2854

Closed
13 of 19 tasks
7sharp9 opened this issue Apr 13, 2017 · 46 comments
Closed
13 of 19 tasks

Repo alignment - How to enable xplat workflow for easy contribution #2854

7sharp9 opened this issue Apr 13, 2017 · 46 comments
Labels
Area-LangService-API Area-Library Issues for FSharp.Core not covered elsewhere Area-SetupAndDelivery Setup, packages, templates, SDK, delivery channels Area-TypeProviders Contributor Pain
Milestone

Comments

@7sharp9
Copy link
Contributor

7sharp9 commented Apr 13, 2017

@dsyme says:

We would like to make it possible to contribute to core components that underlie the OSX and Linux experiences for F# by contributing to this repo (rather than the historical way of routing these requests into the fsharp/fsharp and fsharp/FSharp.Compiler.Service repos. We can call this "repo alignment".

Separately, people have discussed splitting this repo - putting the "Visual F# IDE Tools" (vsintegration and setup directories) in a separate repo, and perhaps putting "FSharp.Core" in a separate directory too. For now we will assume that this will be done eventually

Here's a list of things we can reasonably unify:

  • Mono friendly fixes and hacks from fsharp/fsharp
  • Mono friendly testing from fsharp/fsharp (or replacement)
  • "make install" or equivalent from fsharp/fsharp
  • local builds of nuget packages for FSharp.Core nuget (from fsharp/fsharp)
  • local builds of nuget packages for FSharp.Compiler.Tools nuget (from fsharp/fsharp)
  • code additions in Fsharp.Compiler.Service (notably some fixes and Exprs.fs) (from fsharp/FSharp.Compiler.Service)
  • local buidls of FSharp.Compiler.Service DLL (from fsharp/FSharp.Compiler.Service)
  • some extra testing (from fsharp/FSharp.Compiler.Service)
  • local builds of nuget packages for FSharp.Compiler.Service
  • type provider authoring SDK from type provider starter pack
  • compiling FSharp.Compiler.Service as a Fable component, a highly valuable long term addition to the F# ecosystem that we don't want to bit-rot
  • make sure documentation in this repo is not skewed towards Visual Studio and Windows. There should be a strong path where neither Visual Studio nor Windows are assumed or even mentioned. OSX and Linux contributors should feel "first class"
  • rename this repo to "fsharp" (even if it continues to hold the setup and vsintegrationdirectories). fsharp/fsharp could then be a mirror of this repo
  • Move tests\service* tests into FSharp.Compiler.Unittests.dll instead of VS-only tests since they don't need any VS bits to run
  • enable running FSharp.Compiler.Unittests.dll on Mono under Jenkins
  • enable running FSharp.Tests.FSharpSuite.DrivingCoreCLR on Mono under Jenkins
  • make sure the documentation on this repo is appropriate for FSharp.Compiler.Service and fsc.exe contributors on Mono/Linux/macOS
  • make sure the testing in this repo is appropriate for contributors on Mono/Linux/macOS
  • remove or minimize the use of CMD scripting such as build.cmd

Various problem with this plan:

  • This repo becomes a logjam containing everything related to both F# core engineering and the Visual F# IDE Tools.
  • The Windows-specific nature ("feel") of this repo will still hang around while it continues to contain the Windows-specific Visual F# IDE Tools
  • The "make install" business currently uses a bunch of makefiles, and adds things like policy files for Mono's unification of FSharp.Core. It's not at all clear we want to pollute this repo with that
  • Supporting the Fable bootstrap of Fsharp.Compiler.Service adds a very new and different dimension to this repo that may blow the minds of contributors, and leave them unable to debug issues with Fable.
  • Do the new binaries and packages get signed, and if so using which strong names

Aside: this does not mean that Microsoft Visual F# Tools team become publishers of any of the alternative packagings of F# - and indeed the final "tagging" and "publishing" of these components may still be done in other repos - see this description for the actual tagging and release repos, including those used by Xamarin. This is normal. But contributions would flow into this repo.


@7sharp9 writes:

As a starting point I want to help with the type provider type input testing and implementation, as well as many other features but doing so means porting code to and from FCS and also building and installing the compiler into osx/mono.

  • I can now build and run from this repo with the resource issue: SqlDataConnection Suppresses SQLMetal Warnings #720 I think
  • To get tooling support I will need to build visualfsharp and use it in place of FCS in ionide/xs/
  • I also need to be able to install the compiler with a script, Im assuming theres one described in the readme somewhere.

So I would need two build target outputs for this repo, one for an FCS compatible build, and one for a compiler build, and a script to install into mono.

@vasily-kirichenko
Copy link
Contributor

I'm +1000 for this. Enabling @7sharp9 to contribute worth any effort needed to make FSharp.LanguageService.Compiler usable from Ionide/XS (this means to make the API optionally public I guess?)

@cartermp
Copy link
Contributor

Agreed, this is important.

@7sharp9
Copy link
Contributor Author

7sharp9 commented Apr 13, 2017

At the moment Im trying to figure out how to replace the compiler installed in mono with the one just built in release, I cant see a script for that in this repo.

7sharp9 referenced this issue in colinbull/visualfsharp Apr 14, 2017
@7sharp9
Copy link
Contributor Author

7sharp9 commented Apr 14, 2017

I added some notes here on trying to get that fork running the TP sample: colinbull@c295f8a

@dsyme
Copy link
Contributor

dsyme commented Apr 14, 2017

@7sharp9 @vasily-kirichenko @KevinRansom @cartermp @brettfo I've added a lengthy description of all the work I know of to be done in the area of "repo unification" up above in the issue description, plus some additional comments

@KevinRansom @cartermp @brettfo You guys are the repo owners - if you don't want these things coming in to this repo, then you should say :)

@KevinRansom
Copy link
Member

We are eager for the repos to be aligned. And are willing to make the necessary changes to make that happen. So long as our product pipeline is not broken by any changes we are good.

@cartermp
Copy link
Contributor

Agreed with what @KevinRansom said. Let's do it.

@dsyme
Copy link
Contributor

dsyme commented Apr 14, 2017

@KevinRansom Thanks, that's great to know.

p.s. That said, I fear you may have a heart attack (joke!! I hope not!! :) ) when you see a PR proposing to integrate the machine-wide policy files for FSharp.Core installed as part of Mono... The Mono packagings of F# have always used those to unify FSharp.Core to the latest version - for better or worse.... And I assume there is code that depends on that. We can perhaps reassess that, but probably best not to do that as part of unification.

So I suggest we put those under an explicit mono directory :) And in general aim to keep each of the above items fairly separable.

@cartermp cartermp added this to the VS 2017 Updates milestone Apr 14, 2017
@dsyme
Copy link
Contributor

dsyme commented Apr 14, 2017

@vasily-kirichenko

...make FSharp.LanguageService.Compiler usable from Ionide/XS ...

Let's aim instead for building FSharp.Compiler.Service in this repo.

For now let's assume FSharp.LanguageService.Compiler remains a special version of this component used only by the Visual F# Tools. This is because historically there was huge pressure from Visual Studio engineering to make FSharp.LanguageService.Compiler smaller - trimming out unnecessary parts. This is one reason I didn't integrate Exprs.fs - which is unused by FLSC. Size minimization was to reduce overall address space usage in the 32-bit devenv.exe Visual Studio process. It's possible this issue will come back to haunt us again one day, so for now just assume that the Visual F# Tools need their own special build of this component.

@smoothdeveloper
Copy link
Contributor

Disclaimer: not directly related to mono support in this repository.

Can we move the current scripts under scripts/misc and plan for a comprehensive layout for future build scripts under scripts/build?

My feeling is that we should start splitting the behemoth build.cmd into smaller independant scripts, each put in scripts/build, and have the top level build.cmd handling the main parts (setting env variables for the build conditionals, calling other .cmd, and doing the main build).

This way when we start introducing FAKE script, we can focus on a smaller set of behaviour to replicate.

individual scripts I could see:

  • dotnet core stuff
  • vssdk stuff
  • ngen stuff
  • testing stuff

I know this will make it a bit harder (but how much harder? not so much) to deal with small changes, but I don't see how the community can put effort in a big bang PR to change the whole thing at once, that will need long lead time for you guys to review / assess, while changing each small script or the top level one, one by one is definitely doable.

@dsyme
Copy link
Contributor

dsyme commented Apr 14, 2017

@smoothdeveloper Let's keep this thread on topic please, about repo unification

@dsyme
Copy link
Contributor

dsyme commented Apr 14, 2017

@7sharp9 I've updated the issue description with a list of all the problems that will arise because of repo unification.

Specifically, if we do this unification we should go into it with our eyes open: it's important that you be aware of the inevitable problems listed above (e.g. the mess that is the Windows-specific build.cmd, or the fact that the Visual F# IDE Tools are part of this repo with all that brings in biasing it towards Windows...) . We can fix these things, but it will require work.

The point is - don't assume unification is some kind of panacea. It will bring new problems of a different kind.

@KevinRansom
Copy link
Member

Mostly we need to be able to do mono build and testing as part of normal dev work.

@smoothdeveloper
Copy link
Contributor

@dsyme, sorry but I think it is relevant.

For example people using windows (hence build.cmd) might also want to loopback on getting FCS built from this repository, hence I think we should make the effort of making any addition to build scripts (which are not straight ports from fsharp/fsharp or FCS repositories at least) in smaller scripts, and possibly .fsx already if we don't want another round of .sh / .cmd duplication.

Am I making any sense?

@dsyme
Copy link
Contributor

dsyme commented Apr 14, 2017

@smoothdeveloper Yes, it makes sense. But whether the scripts are large or small, how they are named, which directories they go in etc. is a detail we will sort out along the way.

@dsyme
Copy link
Contributor

dsyme commented Apr 14, 2017

Mostly we need to be able to do mono build and testing as part of normal dev work.

Yes, that's crucial.

@7sharp9's criteria is to be able to build and dev the core components that flow into Xamarin Studio (Visual Studio for Mac) using this repo (rather than making contributions here and then flowing them into the FCS repo). And in general to have a first class OSX contribution story for this repo.

BTW I think I need to get myself a Mac.... My kids destroyed the last one :)

@vasily-kirichenko
Copy link
Contributor

so for now just assume that the Visual F# Tools need their own special build of this component.

It makes contributing by non-windows people, like @7sharp9 much more harder. There're a very few of us who contribute to FCS and cutting off #2 in this list is just unforgivable.

@dsyme
Copy link
Contributor

dsyme commented Apr 14, 2017

It makes contributing by non-windows people, like @7sharp9 much more harder. There're a very few of us who contribute to FCS and cutting off #2 in this list is just unforgivable.

I thiink I was misunderstood. I was meaning adding something like this in this repo:

build fcs   -- builds the FSharp.Compiler.Service.dll
build fcs test  -- builds and tests the FSharp.Compiler.Service 
build fcs nuget -- builds the FSharp.Compiler.Service and makes the nuget

This:

build vs   -- builds the FSharp.LanguageService.Compiler and other VS stuff

would build the separate FSharp.LanguageService.Compiler DLL from the same code for use by VS, obeying whatever extra requirements Microsoft demand (make stuff internal, minimize size or whatever)

So on OSX Dave's workflow would simply be repeated:

  1. develop
  2. build.sh fcs nuget
  3. Build new F# tools for Xamarin (or Visual Studio for Mac or Ionide or whatever)

and a feed of FSharp.Compiler.Service nuget would be available from AppVeyor CI of this repo

@vasily-kirichenko
Copy link
Contributor

Ah. I see. That's great. But we will end up building almost all the sources three times (FSharp.Compiler, FSharp.LanguageService.Compiler and FCS). However, if we, who use VS, won't have to build FCS in our workflow (not having it in VisualFSharp solution, basically), that's OK.

@7sharp9
Copy link
Contributor Author

7sharp9 commented Apr 14, 2017

Why does there have to be 3 compilers built, is FSharp.LanguageService.Compiler the Windows / VS equivalent of FCS?

@7sharp9
Copy link
Contributor Author

7sharp9 commented Apr 14, 2017

The non windows workflow would also need a compiler built and installed as well as FCS, unless there is a way of unifying both of those, or specifically decoupling the FCS parts as a facade over the compiler.

@smoothdeveloper
Copy link
Contributor

Is FSharp.LanguageService.Compiler the Windows / VS equivalent of FCS?

yes

Why does there have to be 3 compilers built

  • fsharp.compiler (referenced by fsc and fsi)
  • fsharp.languageservice.compiler for VS, it might trim down stuff with ifdef from FCS (due to memory constraint in devenv.exe)
  • fsharp.compiler.service

We don't need the latest one when working in VS (as @vasily-kirichenko says) and indeed it would help if the second one was just adding to the compiler itself instead of compiling again (I wonder if the reason is also related to internals?).

@7sharp9
Copy link
Contributor Author

7sharp9 commented Apr 14, 2017

@dsyme I added this to the top too:

If this is the defacto fsharp compiler then a tag a versioned build need to be integrated into mono

@dsyme
Copy link
Contributor

dsyme commented Apr 14, 2017

Why does there have to be 3 compilers built

We can maybe reduce it to two or one - perhaps almost immediately after unification or even during it. It depends in part if Microsoft continue to want internal symbols only in the VS bits they ship. If they are ok with dropping this requirement - and are ok with slightly larger overall binary size - then I reckon we can just use one FSharp.Compiler.Service.dll and nothing else.

@KevinRansom
Copy link
Member

KevinRansom commented Apr 14, 2017 via email

@7sharp9
Copy link
Contributor Author

7sharp9 commented Apr 14, 2017

I think we all realise that any major change to code organisation is not going to happen in a reasonable time.

To me the first few steps could be:

  • Get the necessary extra files in here from FCS and #if deffing them so a build could be generated for FCS. This would satisfy retiring FCS quite quickly.

  • The next part is getting an install script for mono, I must admit I find it hard to follow the install points in the make file in fsharp/fsharp

  • I noticed in the samples that the built compiler is used rather than the installed one, this is very handy rather than having to replace the compiler, unfortunately it doesn't work on osx yet. See: colinbull@c295f8a#commitcomment-21764715

@dsyme
Copy link
Contributor

dsyme commented Apr 27, 2017

@7sharp9 @vasily-kirichenko The first of the many work items here has been completed - we now have a make install path for Mono users. Please try it out when you get the chance.

I will now work on build fcs for building the FSharp.Compiler.Service DLL in this repo.

@dsyme
Copy link
Contributor

dsyme commented Apr 29, 2017

@7sharp9 The FSharp.Compiler.Service parts of this work are underway here: #2951

@dsyme
Copy link
Contributor

dsyme commented Apr 29, 2017

@cartermp Note that an unfortunate side-effect of bringing FCS development into this repo would be bringing in 114 issues from that repo (though we could continue to track them in the other repo for a while while we trimmed them down). I'll try to close out many issues there beforehand.

That's one reason I've been going through the VFT issue list today/yesterday - to trim out some old issues and make a bit of room :)

@cartermp
Copy link
Contributor

@dsyme All good to me. More than happy to triage them so we can really know where we're at.

@7sharp9
Copy link
Contributor Author

7sharp9 commented Apr 29, 2017 via email

@dsyme
Copy link
Contributor

dsyme commented May 1, 2017

@7sharp9 @vasily-kirichenko Thank you so much for closing the swathes of old bugs, it's really important to keep things ship-shape

@dsyme
Copy link
Contributor

dsyme commented May 2, 2017

Just to mention that I'm working on a nasty PR to bring the FCS changes back into Microsoft/visualfsharp, see #2951

There are a bunch of complications with this - there are subtle differences between FSharp.Compiler.Service.dll (public API), FSharp.Compiler.dll (internal to fsc.exe and fsi.exe) and FSharp.LanguageService.Compiler.dll (internal to VS, some things trimmed out) but it's getting there.

@dsyme dsyme changed the title Repo unification - How to enable xplat workflow for easy contribution Repo alignment - How to enable xplat workflow for easy contribution Jun 22, 2017
@7sharp9
Copy link
Contributor Author

7sharp9 commented Feb 9, 2018

Just checking in / resurrecting this thread slightly.

Im just reading the build build on OS X and was wondering if there is a way of building without using mono, e.g. with only a netstandard installation.

A lot of people are getting interested in F# because of x-platform stability from netstandard and are probably not as enthralled by having to install "mono". I know its possible to build FCS using only net standard so this should also be possible here.

@brettfo
Copy link
Member

brettfo commented Feb 9, 2018

I'm currently working on converting our projects over to use the new Microsoft.NET.Sdk which means you'd be able to dotnet build FSharp.Core.fsproj, etc., but due to a complicated mix of our projects, I'm first converting the Visual Studio specific projects in #4317. While that work doesn't directly make building with only a dotnet CLI install possible, it's a step I have to take before I can re-look at converting everything under src\fsharp to the new SDK project format.

@dsyme
Copy link
Contributor

dsyme commented Feb 13, 2018

A lot of people are getting interested in F# because of x-platform stability from netstandard and are probably not as enthralled by having to install "mono". I know its possible to build FCS using only net standard so this should also be possible here.

Right now .NET Framework/Mono is still required to do any major testing, tooling work etc. in this repo

BuildFromSource should work without .NET Framework/Mono. But there's no testing.

If it helps Mono has been rock solid for our purposes in this repo lately. I haven't reported a bugzilla bug in about a year I think, and the only issues we've had have been xbiuld --> msbuild (which is about convergence) And performance is good on my Mac.

@cartermp
Copy link
Contributor

From #3015

@dsyme suggestions renaming:

FSharp.Editor --> VisualFSharp.Editor
FSharp.LanguageService --> VisualFSharp.LanguageService

@cartermp cartermp modified the milestones: VS 2017 Updates, vFuture Jun 9, 2018
@cartermp cartermp modified the milestones: vFuture, 16.0 Jul 29, 2018
@7sharp9
Copy link
Contributor Author

7sharp9 commented Aug 7, 2018

Where are we with this, are we near to killing fsharp/fsharp?

@cartermp cartermp modified the milestones: 16.0, Unknown Jan 31, 2019
@cartermp
Copy link
Contributor

cartermp commented May 1, 2019

This has progressed a lot, though not precisely as the checklist implies:

  • Source build is now compliant with .NET Core source build
  • Repo is 100% migrated to the .NET SDK with individual pieces buildable piecemeal
  • Building itself is now simplified and can be tweaked based on the solution you want to build against and CI names now make sense
  • README is now simplified and there is a quickstart for newcomers

Additionally:

I'm going to write another RFC for archiving fsharp/fsharp, though I do see that as the last effort in this process.

@cartermp
Copy link
Contributor

I think we can reasonably close this out. FCS is now incorporated into the root of the repo and builds as a package, with release notes and docs underway. All the mono stuff is now irrelevant since we yote mono out of this repo and are unifying on the .NET SDK. The only remaining piece is emitting Fable stuff, but frankly I think Fable has been getting along fine enough without us ruining their day. Not that there aren't issues, but we've had multiple folks contribute compiler features without ever using Windows, so I consider that a success.

@cartermp cartermp modified the milestones: Unknown / not bug, 16.8 Aug 31, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-LangService-API Area-Library Issues for FSharp.Core not covered elsewhere Area-SetupAndDelivery Setup, packages, templates, SDK, delivery channels Area-TypeProviders Contributor Pain
Projects
None yet
Development

No branches or pull requests

8 participants