-
Notifications
You must be signed in to change notification settings - Fork 587
Further attempts at building with .NET 8 #2852
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
base: master
Are you sure you want to change the base?
Conversation
let scenarioPath = resolvePath scenario "" | ||
// dotnet tool install --version 5.19.0-alpha.local.1 fake-cli --add-source /e/Projects/FAKE/release/dotnetcore/ | ||
|
||
// Work around https://github.com/dotnet/sdk/issues/40655 by specifying the tool manifest explicitly |
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.
Some of tests in previous runs seemed to be failing with dotnet/sdk#40655, whereby installing the dotnet tool in a subdirectory that contains a tools config file will ignore that file and use the one in the repo root, but then trying to use that tool will use the local config file and then fail.
That issue is marked as resolved, but it still seemed to be occuring in the SDK version used by the tests
|> Async.RunSynchronously | ||
|> List.ofSeq | ||
|> List.find (fun product -> product.ProductVersion.Equals("6.0")) | ||
|> List.find (fun product -> product.ProductVersion.Equals("8.0")) |
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.
I'm not sure what the logic for this (or cachedDotnetSdkReleases.json) should be when updating .NET versions.
The current cachedDotnetSdkReleases.json only contains the .NET 6 releases and that seemed to cause test failures when built as .NET 8 and looking for the v8 SDK versions.
Changing this to 8.0 fixed that, but that might then not be right if fake-cli is multi-targetted at .NET 6 and .NET 8 as the .NET 6 version might still need the list of v6 releases?
Test Results 7 files - 5 7 suites - 5 18m 27s ⏱️ - 34m 15s For more details on these failures, see this check. Results for commit 62084b1. ± Comparison against base commit 73fc961. This pull request removes 5 and adds 3 tests. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
The remaining failures are in the TemplateIntegrationTests, with errors like
and I'm not sure if this is really a problem with the new stuff, or if it's because it's trying to use the 6.1.3 release to test the templates, and failing when running as .NET 8? (I suppose it shou;dn't be looking at the 6.0 assemblies when running as 8.0) |
I expect that there is a chicken-and-egg problem, and the integration tests are actually restoring the .NET6 fake to try compiling .NET8, instead of referring to the just built .NET 8 version. I tried this branch locally (Numpsy/new8-build-bump-roll-tests-2) on my machine, and my observations are here:
I run on my Windows machine dotnet build, and then from the actions: It turned out that this didn't work properly. So I removed the Clean-task and called fake manually:
And behold, all the integration tests went through, after painfully long half-an-hour later: ![]() Where it did finally fail is:
So basically, dotnet deb tool has to be updated from 0.1.220 to version 0.1.232 FAKE/.config/dotnet-tools.json Line 6 in 73fc961
...and that's it, I think we could consider merging this and releasing a beta or new major version. |
@Thorium yes it can. |
Whether there's any benefit to supporting .NET 6 in fake-cli any more is another question, and given the amount of pain in testing it all, just doing 8 seems simpler for a new major release? .NET 10 is on the horizon, so making sure it works for that going forward seems more important than keeping 6 working in new versions. (My personal opinion anyway). I'll see about rebasing it and fixing the conflicts anyway |
Many projects use a separate non-FAKE fsproj as a build-project and reference the FAKE libraries, and there I see value in having .NET6 support kept. But the fake-cli tool, I think, could target only the NET8 (or even 10 later). |
Then it will be impossible to run it unless you have the latest SDK installed |
The 'DNX' stuff that MS are talking about with .NET 10 (https://github.com/dotnet/core/blob/main/release-notes/10.0/preview/preview6/sdk.md#platform-specific-net-tools) could maybe help if the tool could be self contained, but that's a work in progress so it remains to be seen |
On the subject of targetting multiple .NET versions in fake-cli, re-reading the old comments reminded me of the situation with cachedDotnetSdkReleases.json - i.e., if the tool i smulti-targetted, you might need multiple versions of that file for different .NET versions? |
Change global.json .NET 6 to 8 Search and replace targetframeworks from fsproj files to add net8.0 Add net8.0 to paket.dependencies dotnet paket install to find .NET8 compatible dependencies Expecto had to be hardcoded for now, because some tests are running on netstandard2.0 library (hopefully we can update this separately later) MSBuild.StructuredLogger problem: DisableInternalBinLog = true had to be added to build.fsx NuGet commands (hopefully we can update this separately later) A few places of code had new overrides so had to explicitly type to strings SdkAssemblyResolver to default .NET 8 as well Readme update GitHub pipeline configs: Add .NET 8 install.
0364d81
to
233081b
Compare
@Thorium I didn't see your other PR until after i'd rebased the changes to fix the merge conflicts, which caused conflicts in that, so I've cherry picked your dotnet-deb update straight into this PR |
I think this file https://github.com/fsprojects/FAKE/blob/master/src/template/fake-template/Content/.config/dotnet-tools.json But I'm not sure if there is any workaround possible. |
…l has to be upgraded from 16 to 20, to make GenerateDocs task pass.
fsdocs-tool update to 20.0.1
Description
As #2818, but updated on top of the latest changes and with a couple of extra commits to try to get more tests passing - see further comments for details