forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'dotnet/master' into sqlperf-envchange
Commit migrated from dotnet/corefx@6343429
- Loading branch information
Showing
117 changed files
with
4,198 additions
and
555 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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,14 +92,14 @@ jobs: | |
- _outerloop: true | ||
|
||
- ${{ if eq(parameters.isOfficialBuild, 'false') }}: | ||
- linuxDefaultQueues: Centos.7.Amd64.Open+RedHat.7.Amd64.Open+Debian.8.Amd64.Open+Ubuntu.1604.Amd64.Open+Ubuntu.1804.Amd64.Open+OpenSuse.42.Amd64.Open+Fedora.27.Amd64.Open | ||
- linuxArm64Queues: Ubuntu.1604.Arm64.Open | ||
- linuxDefaultQueues: Centos.7.Amd64.Open+RedHat.7.Amd64.Open+Debian.8.Amd64.Open+Ubuntu.1604.Amd64.Open+Ubuntu.1804.Amd64.Open+OpenSuse.42.Amd64.Open+Fedora.28.Amd64.Open | ||
- linuxArm64Queues: '\(Ubuntu.1604.Arm64\)Ubuntu.1604.Arm64.Docker.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-16.04-helix-arm64v8-b049512-20190321153539' | ||
|
||
- ${{ if eq(parameters.isOfficialBuild, 'true') }}: | ||
- linuxDefaultQueues: Centos.7.Amd64+RedHat.7.Amd64+Debian.8.Amd64+Debian.9.Amd64+Ubuntu.1604.Amd64+Ubuntu.1804.Amd64+Ubuntu.1810.Amd64+OpenSuse.42.Amd64+SLES.12.Amd64+SLES.15.Amd64+Fedora.27.Amd64+Fedora.28.Amd64 | ||
- linuxArm64Queues: Ubuntu.1604.Arm64 | ||
- linuxDefaultQueues: Centos.7.Amd64+RedHat.7.Amd64+Debian.8.Amd64+Debian.9.Amd64+Ubuntu.1604.Amd64+Ubuntu.1804.Amd64+Ubuntu.1810.Amd64+OpenSuse.42.Amd64+SLES.12.Amd64+SLES.15.Amd64+\(Fedora.28.Amd64\)[email protected]/dotnet-buildtools/prereqs:fedora-28-helix-45b1fa2-20190327215722+\(Fedora.29.Amd64\)[email protected]/dotnet-buildtools/prereqs:fedora-29-helix-c6dc5e6-20190319174449' | ||
- linuxArm64Queues: '\(Ubuntu.1604.Arm64\)[email protected]/dotnet-buildtools/prereqs:ubuntu-16.04-helix-arm64v8-b049512-20190321153539' | ||
- linuxArmQueues: '\(Debian.9.Arm32\)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm32v7-b049512-20190321153542' | ||
- alpineQueues: Alpine.36.Amd64+Alpine.38.Amd64 | ||
- alpineQueues: '\(Alpine.36.Amd64\)[email protected]/dotnet-buildtools/prereqs:alpine-3.6-helix-45b1fa2-20190327215821+\(Alpine.38.Amd64\)[email protected]/dotnet-buildtools/prereqs:alpine-3.8-helix-45b1fa2-20190327215821+\(Alpine.39.Amd64\)[email protected]/dotnet-buildtools/prereqs:alpine-3.9-helix-e4eaef4-20190228230637' | ||
|
||
# Legs without helix testing | ||
# There is no point of running legs without outerloop tests, when in an outerloop build. | ||
|
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
26 changes: 26 additions & 0 deletions
26
src/libraries/Common/src/Interop/Unix/System.Native/Interop.LChflags.cs
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,26 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
using System; | ||
using System.Runtime.InteropServices; | ||
|
||
internal static partial class Interop | ||
{ | ||
internal static partial class Sys | ||
{ | ||
[Flags] | ||
internal enum UserFlags : uint | ||
{ | ||
UF_HIDDEN = 0x8000 | ||
} | ||
|
||
[DllImport(Libraries.SystemNative, EntryPoint = "SystemNative_LChflags", SetLastError = true)] | ||
internal static extern int LChflags(string path, uint flags); | ||
|
||
internal static readonly bool CanSetHiddenFlag = (LChflagsCanSetHiddenFlag() != 0); | ||
|
||
[DllImport(Libraries.SystemNative, EntryPoint = "SystemNative_LChflagsCanSetHiddenFlag")] | ||
private static extern int LChflagsCanSetHiddenFlag(); | ||
} | ||
} |
22 changes: 0 additions & 22 deletions
22
src/libraries/Common/src/Interop/Windows/Kernel32/Interop.QueryPerformanceCounter.cs
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
src/libraries/Common/src/Interop/Windows/Kernel32/Interop.QueryPerformanceFrequency.cs
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
src/libraries/Common/tests/StaticTestGenerator/Directory.Build.props
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,2 @@ | ||
<!-- Standalone project. Avoid being tied to the build infrastructure in the repo. --> | ||
<Project/> |
2 changes: 2 additions & 0 deletions
2
src/libraries/Common/tests/StaticTestGenerator/Directory.Build.targets
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,2 @@ | ||
<!-- Standalone project. Avoid being tied to the build infrastructure in the repo. --> | ||
<Project/> |
Oops, something went wrong.