-
Notifications
You must be signed in to change notification settings - Fork 789
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Pack MIBC files * Update Directory.Build.targets * temp * temp * mibc copies * Update fsc.targets * Update SourceBuildPrebuiltBaseline.xml * only F# * Update SourceBuildPrebuiltBaseline.xml * Update SourceBuildPrebuiltBaseline.xml * Fix * don't bother for specific OS and stuff * Update SourceBuildPrebuiltBaseline.xml * Add forgotten applying to proto * Use linux pgo on mac * fix locking files * Try something * revert * up * up * try something * Update Directory.Build.targets * updates * Pass arguments explicitly * Have an explicit task in proto * Have an explicit task in proto * Should be good now? * Should be good now? Please * Move restore baack * Try something * hah * well how bout this bro * Update single-test.fs * Update SourceBuildPrebuiltBaseline.xml * Update optimizationData.targets * oops * Update optimizationData.targets * more hacks * aaaaaand more hacks * up * bad copypaste * oops --------- Co-authored-by: Kevin Ransom <kevinr@microsoft.com> Co-authored-by: KevinRansom <codecutter@hotmail.com> Co-authored-by: Vlad Zarytovskii <vzaritovsky@hotmail.com>
- Loading branch information
1 parent
c8fbed0
commit 2f27f48
Showing
7 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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 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,27 @@ | ||
<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 --> | ||
<ItemGroup Condition="'$(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 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 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 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 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