Skip to content

Commit 1c87d1c

Browse files
committed
remove references to helix
1 parent 2ed0c53 commit 1c87d1c

4 files changed

Lines changed: 0 additions & 53 deletions

File tree

eng/SendToHelix.proj

Lines changed: 0 additions & 26 deletions
This file was deleted.

eng/build.ps1

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ Param(
88
[switch] $installruntimes,
99
[switch] $privatebuild,
1010
[switch] $ci,
11-
[switch] $helix,
1211
[switch][Alias('bl')]$binaryLog,
1312
[switch] $skipmanaged,
1413
[switch] $skipnative,
@@ -76,10 +75,6 @@ if (-not $skipnative) {
7675
if (-not $skipmanaged) {
7776
if ($withtests) {
7877
$remainingargs = "/p:BuildTests=true " + $remainingargs
79-
80-
if ($helix) {
81-
$remainingargs = "/p:ArchiveTests=true " + $remainingargs
82-
}
8378
}
8479

8580
Invoke-Expression "& `"$engroot\common\build.ps1`" -configuration $configuration -verbosity $verbosity $bl /p:TargetOS=$os /p:TargetArch=$architecture /p:TestArchitectures=$architecture $remainingargs"

eng/build.sh

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ __InstallRuntimes=0
3030
__PrivateBuild=0
3131
__BuildTests=0
3232
__RunTests=0
33-
__UseHelix=0
3433
__UnprocessedBuildArgs=
3534
__UseCdac=0
3635
__LiveRuntimeDir=
@@ -113,10 +112,6 @@ handle_arguments() {
113112
__ManagedBuild=0
114113
;;
115114

116-
helix|-helix)
117-
__UseHelix=1
118-
;;
119-
120115
usecdac|-usecdac)
121116
__UseCdac=1
122117
;;
@@ -234,10 +229,6 @@ if [[ "$__ManagedBuild" == 1 ]]; then
234229

235230
if [[ "$__BuildTests" == 1 ]]; then
236231
__ManagedBuildArgs="$__ManagedBuildArgs /p:BuildTests=true"
237-
238-
if [[ "$__UseHelix" == 1 ]]; then
239-
__ManagedBuildArgs="$__ManagedBuildArgs /p:ArchiveTests=true"
240-
fi
241232
fi
242233

243234
"$__RepoRootDir/eng/common/build.sh" \

tests/Directory.Build.props

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,6 @@
1717
</PropertyGroup>
1818

1919
<PropertyGroup>
20-
<TestArchiveRoot>$(ArtifactsDir)helix/</TestArchiveRoot>
21-
<TestArchiveTestsDir>$(TestArchiveRoot)tests/</TestArchiveTestsDir>
22-
</PropertyGroup>
23-
24-
<PropertyGroup Condition="'$(ArchiveTests)' == 'true'">
25-
<TestRepoRoot>.</TestRepoRoot>
26-
<TestPackageArtifactsRootDir>packages</TestPackageArtifactsRootDir>
27-
<TestAuxMSBuildRootDir>eng/AuxMsbuildFiles</TestAuxMSBuildRootDir>
28-
<TestVersionConfigDir>.</TestVersionConfigDir>
29-
<TestNativeDir>native</TestNativeDir>
30-
</PropertyGroup>
31-
32-
<PropertyGroup Condition="'$(ArchiveTests)' != 'true'">
3320
<TestRepoRoot>$(RepoRoot)</TestRepoRoot>
3421
<TestDotNetRootDir>$(DotNetInstallRoot)</TestDotNetRootDir>
3522
<TestPackageArtifactsRootDir>$(NuGetPackageRoot)</TestPackageArtifactsRootDir>

0 commit comments

Comments
 (0)