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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-07-24Fix typos (#72709)Adeel Mujahid
2021-12-01Fix a few syntax issues in shell scripts (#62102)Adeel Mujahid
* Fix a few syntax issues in shell scripts * Cleanup trailing whitespace in changed files ```sh # git remote add dotnet https://github.com/dotnet/runtime && git pull --rebase dotnet main if uname 2>/devnull | grep -q Darwin; then space=" " fi git show --name-only --pretty="" HEAD...dotnet/main |\ xargs -I{} sh -c "test -f {} && sed -i$space'' 's/[[:space:]]*$//' {}" ``` * Address CR feedback
2021-05-08Enable tests for MacCatalyst x64 (#51139)Jo Shields
2021-05-04Apple Silicon use default XCode version (#52214)Steve MacLean
Current default for vmImage 10.15 is XCode 12.4 Remove pin to Xcode 12.2 for Apple Silicon
2021-03-23Remove openssl dependency from android (#49282)Steve Pfister
2021-02-17Add staging job to build Android using native crypto instead of OpenSSL (#48373)Elinor Fung
* Fix x86 build
2020-12-10Add logging to open ssl uninstall (#45855)Santiago Fernandez Madero
* Add logging to open ssl uninstall * Fix syntax
2020-12-09Remove autotools dependencies from the build requirements (#45825)Alexander Köplinger
Now that Mono has switched to CMake we no longer need the autoconf, automake and libtool build dependencies.
2020-12-09Add workarounds for brew on old OSX images (#45802)Santiago Fernandez Madero
* Add workarounds for brew on old OSX images * Don't remove openssl directories
2020-10-21Add test leg to the PR build to run libraries tests on Android emulators ↵Přemek Vysoký
(#37585)
2020-10-12Don't autoupgrade homebrew formula in install-native-dependencies.sh (#43299)Alexander Köplinger
Should workaround an issue we're seeing on AzDO while upgrading openssl@1.1 1.1.1g -> 1.1.1h: 'Error: Not a directory @ dir_s_rmdir - /usr/local/Cellar/openssl'
2020-10-10Enable building .NET Core osx-arm64 in CI (#43187)Steve MacLean
* Enable building .NET Core osx-arm64 in CI * For osx-arm64 xcode-select xcode_12.2 * Use vmImage macOS-10.15 for all platforms
2020-07-28Add brew update before brew bundle (#39999)Ryan Lucia
Every lane appears to be failing because of an issue with brew bundle expecting the latest homebrew but not automatically updating: https://github.com/Homebrew/homebrew-bundle/issues/751 So forcibly update, which is apparently good practice anyway: https://github.com/Homebrew/homebrew-bundle/issues/751#issuecomment-664958735
2020-05-20Use a Brewfile for installing brew packages (#36747)Alexander Köplinger
This means we won't be upgrading existing packages on the system that we don't need for the build. Marks install-native-dependencies.sh as executable (+x) so we don't need to start it with `sh` in the build .yml Fixes https://github.com/dotnet/runtime/issues/36727
2020-05-07Simplify build on macOS (#35570)Cédric Luthi
* Check for OpenSSL (and pkg-config) in the check_prereqs() function * Simplify OpenSSL installation instructions * Automatically pick the OpenSSL version installed by Homebrew by exporting the proper PKG_CONFIG_PATH environment variable * Improve the error message if cmake can't find OpenSSL The previous instructions were asking the user to add symbolic links inside /usr/local/lib/ and /usr/local/lib/pkgconfig/ for OpenSSL related files. There is no need for a complicated setup with symbolic links when the PKG_CONFIG_PATH environment variable points to the right pkgconfig, which is now done in build-commons.sh. Co-Authored-By: Jan Kotas <jkotas@microsoft.com> Co-Authored-By: Jeremy Barton <jbarton@microsoft.com>
2020-04-08Initial addition of tvOS Mono (#34475)Jo Shields
2020-03-18Add AzDO builds for iOS (#33424)Jo Shields
This is based on #33292
2020-03-11Unconditionally upgrade installed Brew packages on OSX (#33481)Jo Shields
With Apt, if you have X 1.0 installed, 1.1 exists in the package manifest, and say "install X", X is upgraded to 1.1. With Brew, a fatal error is thrown. Blindly upgrading all previously installed packages is not ideal, and not a perfect mirror for the Apt behaviour, but it should mean that if X is previously installed it gets upgraded (causing a warning during install, when it's asked to be installed again with the same version), and if it's not already installed then it gets installed later. Closes: https://github.com/dotnet/runtime/issues/33471
2020-01-22Enable Mono build in CI (#1934)Alexander Köplinger
* Enable Mono in default build * Integrate Mono into the build system * Fix System.Private.CoreLib build in Mono Broken by https://github.com/dotnet/runtime/commit/9c82a36c23235c4d50954cb33a4d5d89b787a1aa * Disable Windows test runs Fails due to https://github.com/dotnet/runtime/issues/1933 Co-authored-by: Viktor Hofer <viktor.hofer@microsoft.com>
2019-03-12Fix syntax bug: bash requires spaces around brackets for tests ↵John Salem
(dotnet/coreclr#23017) Commit migrated from https://github.com/dotnet/coreclr/commit/3a9bb4176f892bbde935478ff04cb05d3a54a64a
2019-01-10Work around OSX native dependency install issue (dotnet/coreclr#21913)Sven Boemer
"brew update" before "brew install" To work around https://github.com/dotnet/coreclr/issues/21910 Commit migrated from https://github.com/dotnet/coreclr/commit/e6504ac402a65283e2083ec8d28e8c90a743bd1a
2018-11-08Add azure-pipelines build and test definitions (dotnet/coreclr#20840)Sven Boemer
This adds an azure pipeline definition with a matrix of product and test builds, using helix to run tests. The intention is that this definition will eventually be used for both our official build and CI testing. There is one build job for each OS/platform/arch, and one test job for each OS/platform/arch/priority/R2Rflag. The test job builds tests and then submits them to helix, passing along a number of test run modes. One helix test job will be created for each OS/platform/arch/priority/R2Rflag/helixtargetqueue/testscenario. There is a lot of work left to be done to get this up to parity with our official builds and CI, which I've tried to call out in comments. Commit migrated from https://github.com/dotnet/coreclr/commit/8bc5616def9074d8457f85d22b1280493ad731ad