-
Couldn't load subscription status.
- Fork 833
Pack MIBC files #17513
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
Merged
Merged
Pack MIBC files #17513
Changes from 45 commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
6b19819
Pack MIBC files
psfinaki 3f3153f
Update Directory.Build.targets
psfinaki afe74e3
temp
KevinRansom efa30cb
temp
KevinRansom 11b14ab
mibc copies
KevinRansom f6ebb7b
Update fsc.targets
psfinaki 22977e5
Update SourceBuildPrebuiltBaseline.xml
psfinaki f101b74
only F#
psfinaki 8ba6e53
Update SourceBuildPrebuiltBaseline.xml
psfinaki 9bff2d8
Update SourceBuildPrebuiltBaseline.xml
psfinaki 1cdb488
Fix
vzarytovskii 15a855a
don't bother for specific OS and stuff
psfinaki 04d46e8
Update SourceBuildPrebuiltBaseline.xml
psfinaki 217d0e7
Add forgotten applying to proto
vzarytovskii c46454e
Use linux pgo on mac
vzarytovskii 869e3ae
fix locking files
vzarytovskii 0386c3b
Try something
psfinaki d4062e9
revert
psfinaki 9ce5b09
up
psfinaki 0d56b97
up
psfinaki aca86c3
try something
psfinaki c4acbd0
Update Directory.Build.targets
psfinaki 540b060
updates
psfinaki f349e6a
Pass arguments explicitly
vzarytovskii 806062d
Merge branch 'main' into pgo-4
vzarytovskii ee0cc2c
Have an explicit task in proto
vzarytovskii beacded
Have an explicit task in proto
vzarytovskii 478f8fa
Merge branch 'main' into pgo-4
vzarytovskii 2b6259b
Should be good now?
vzarytovskii e920b9c
Merge branch 'pgo-4' of https://github.com/psfinaki/fsharp into pgo-4
vzarytovskii 947da2f
Should be good now? Please
vzarytovskii decffa0
Merge branch 'main' into pgo-4
vzarytovskii 346c655
Move restore baack
vzarytovskii 8f7cca8
Merge branch 'pgo-4' of https://github.com/psfinaki/fsharp into pgo-4
vzarytovskii 2757c54
Try something
psfinaki a1fb4de
hah
psfinaki 386f882
well how bout this bro
psfinaki 19478df
Update single-test.fs
psfinaki c4587c5
Update SourceBuildPrebuiltBaseline.xml
psfinaki 9f9e5d1
Update optimizationData.targets
psfinaki df42c2d
oops
psfinaki 11fbefd
Update optimizationData.targets
psfinaki f0de7e2
more hacks
psfinaki 6126069
aaaaaand more hacks
psfinaki f454dd7
Merge branch 'main' into pgo-4
psfinaki e641163
up
psfinaki f0cbffd
Merge branch 'pgo-4' of https://github.com/psfinaki/fsharp into pgo-4
psfinaki ce37717
bad copypaste
psfinaki 90d1336
oops
psfinaki 0a8e1c8
Merge branch 'main' into pgo-4
psfinaki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| <Project> | ||
| <!-- We want to restore ALL the MIBCs when we build anything, since in the future it will contain different profiles, not only the FSC one we got from building Giraffe --> | ||
| <!-- Skip in source build and in tests where it's an obstacle --> | ||
| <ItemGroup Condition="'$(DotNetBuildFromSource)' != 'true' And '$(IgnoreMIBC)' != 'true'"> | ||
| <MIBCPackage Include="optimization.windows_nt-x86.mibc.runtime" Version="$(optimizationwindows_ntx86MIBCRuntimeVersion)" /> | ||
| <MIBCPackage Include="optimization.windows_nt-x64.mibc.runtime" Version="$(optimizationwindows_ntx64MIBCRuntimeVersion)" /> | ||
| <MIBCPackage Include="optimization.windows_nt-arm64.mibc.runtime" Version="$(optimizationwindows_ntarm64MIBCRuntimeVersion)" /> | ||
| <MIBCPackage Include="optimization.linux-x64.mibc.runtime" Version="$(optimizationlinuxx64MIBCRuntimeVersion)" /> | ||
| <MIBCPackage Include="optimization.linux-arm64.mibc.runtime" Version="$(optimizationlinuxarm64MIBCRuntimeVersion)" /> | ||
| </ItemGroup> | ||
|
|
||
| <!-- We copy all packages to the output (per architecture) --> | ||
| <Target Name="CopyMIBC"> | ||
| <ItemGroup> | ||
| <MibcFiles Include="$(NuGetPackageRoot)%(MibcPackage.Identity)\%(MibcPackage.Version)\**\DotNet_FSharp.mibc" /> | ||
| </ItemGroup> | ||
|
|
||
| <Copy | ||
| SourceFiles="@(MibcFiles)" | ||
| DestinationFolder="$(ArtifactsDir)mibc\%(MibcPackage.Identity)\" | ||
| SkipUnchangedFiles="true" /> | ||
|
|
||
| <Copy | ||
| SourceFiles="@(MibcFiles)" | ||
| DestinationFolder="$(ArtifactsDir)mibc-proto\%(MibcPackage.Identity)\" | ||
| SkipUnchangedFiles="true" /> | ||
| </Target> | ||
| </Project> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.