Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-06-13Publish indexed symbolsChristopher Costa
2018-06-12Fix CoreRT build (#5929)Christopher Costa
* Explicitly version tasks, remove deprecated or disabled tasks * Zip task is locked at version 0.* * Fix version of publish artifact task
2018-03-05Hardcode symbol publishing task to 1.* (#5499)Michal Strehovský
This should hopefully unblock official build publishing.
2017-12-31Set cleanOptions to 3 so that output directory is cleaned up (#5166)Michal Strehovský
2017-12-16ILCompiler Package Multi-Runtime Package Support (#5123)Andon Andonov
As it stands we only produce a Windows ILCompiler package. This work implements building and publishing of OS-specific runtime packages and spins off ILCompiler as a meta-package, which can be referenced when adding to a project. Working on this, a quirk in MSBuild behavior under .NET Core popped up - build artifacts (i.e. .targets and .props files) are imported for direct project package references, but not for runtime-specific packages, defined as dependencies in the meta-package. This doesn't seem to be the case in vanilla MSBuild. The below is a serious hack to work around this - during runtime, we find the resolved runtime package reference and define the path to it on disk, from which all OS-specific components are loaded and run. The motivation behind the workaround was to keep the package as small as possible, particularly because of the large intersection of components between OS implementations. All workarounds are marked as such and should be removed once Microsoft/msbuild#2807 is resolved. There is some slowdown because of sequential resolution of targets, but not immediately noticeable and is unfortunately unavoidable - almost entirely avoided if CoreRT build targets are referenced directly (excluding MSBuild overhead).
2017-12-05ILCompiler nuget package support (#4983)Andon Andonov
2017-10-28Fix docker image used for official builds from Debian to Ubuntu (#4830)Michal Strehovský
2017-10-25Switch to DotNetCore-Build pool (#4792)Michal Strehovský
This one should have VS 2017 installed.
2017-07-31Update symbol publish contacts.Chris Rummel
2017-07-21Fix product drop location (#4201)Michal Strehovský
2017-07-07Switch to DotNetCore-Build pool for macOS Sierra 10.12. (#4098)Ravi Eda
2017-05-04Only index Product symbols, not extra packages.Chris Rummel
2017-05-04Update to use official build prereqs Docker image.Chris Rummel
2017-02-06Fix MyGet feed to point to dotnet-core instead of test feed. (#2670)Chris Rummel
2017-01-18Split pipeline build to match CoreFX's model. (#2505)Chris Rummel
* Split pipeline build to match CoreFX's model. - OS-specific legs no longer publish to MyGet, they just upload to Azure. - New publish leg downloads from Azure and publishes to MyGet. - Only includes Microsoft.TargetingPack.Private.CoreRT for now, will add ILCompiler after we sort out what OS-specific packages should be named. * Addressing code review feedback (PR#2505).
2016-12-20Add packaging build changes and scripts. (#2325)Chris Rummel
2016-12-08Split build scripts for CI (#2309)Chris Rummel
In order to sign and package our builds properly in CI we need to split the build phases up. These changes add build-native, build-managed, and build-tests scripts, with build-packages soon to come. Summary: - Variable handling moved to buildvars-setup scripts to avoid duplication. - Everything else is from the old scripts with some path cleanup changes. - Build.cmd/sh now calls into the split scripts. - Updated build pipeline definitions for new scripts.
2016-12-07Enable pipebuild in CoreRT (#2299)Chris Rummel
* Fix getting test root on Mac and Linux pipeline builds. * Add clean scripts for CI to use. CI is slightly different from a normal user scenario because it will often be cleaning right after another build before VBCSCompiler.exe is killed automatically. * Add checked-in build definitions for pipebuild.