Remove the WebSockets submodule
This commit is contained in:
parent
9e952a22ed
commit
b1427c759b
|
|
@ -15,14 +15,21 @@ phases:
|
||||||
- template: .vsts-pipelines/templates/project-ci.yml@buildtools
|
- template: .vsts-pipelines/templates/project-ci.yml@buildtools
|
||||||
parameters:
|
parameters:
|
||||||
buildArgs: "/t:FastCheck"
|
buildArgs: "/t:FastCheck"
|
||||||
- phase: DataProtection
|
- phase: RepoBuilds
|
||||||
queue: Hosted VS2017
|
queue:
|
||||||
|
name: Hosted VS2017
|
||||||
|
parallel: 2
|
||||||
|
matrix:
|
||||||
|
DataProtection:
|
||||||
|
_FolderName: DataProtection
|
||||||
|
WebSockets:
|
||||||
|
_FolderName: WebSockets
|
||||||
steps:
|
steps:
|
||||||
- script: src/DataProtection/build.cmd -ci
|
- script: src/$(_FolderName)/build.cmd -ci
|
||||||
displayName: Run src/DataProtection/build.cmd
|
displayName: Run src/$(_FolderName)/build.cmd
|
||||||
- task: PublishTestResults@2
|
- task: PublishTestResults@2
|
||||||
displayName: Publish test results
|
displayName: Publish test results
|
||||||
condition: always()
|
condition: always()
|
||||||
inputs:
|
inputs:
|
||||||
testRunner: vstest
|
testRunner: vstest
|
||||||
testResultsFiles: 'src/DataProtection/artifacts/logs/**/*.trx'
|
testResultsFiles: 'src/$(_FolderName)/artifacts/logs/**/*.trx'
|
||||||
|
|
|
||||||
|
|
@ -178,7 +178,3 @@
|
||||||
path = modules/Testing
|
path = modules/Testing
|
||||||
url = https://github.com/aspnet/Testing.git
|
url = https://github.com/aspnet/Testing.git
|
||||||
branch = release/2.1
|
branch = release/2.1
|
||||||
[submodule "modules/WebSockets"]
|
|
||||||
path = modules/WebSockets
|
|
||||||
url = https://github.com/aspnet/WebSockets.git
|
|
||||||
branch = release/2.1
|
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@
|
||||||
<RepositoryBuildOrder Include="ServerTests" Order="11" />
|
<RepositoryBuildOrder Include="ServerTests" Order="11" />
|
||||||
<RepositoryBuildOrder Include="Diagnostics" Order="12" />
|
<RepositoryBuildOrder Include="Diagnostics" Order="12" />
|
||||||
<RepositoryBuildOrder Include="Localization" Order="12" />
|
<RepositoryBuildOrder Include="Localization" Order="12" />
|
||||||
<RepositoryBuildOrder Include="WebSockets" Order="13" />
|
<RepositoryBuildOrder Include="WebSockets" Order="13" RootPath="$(RepositoryRoot)src\WebSockets\" />
|
||||||
<RepositoryBuildOrder Include="Security" Order="13" />
|
<RepositoryBuildOrder Include="Security" Order="13" />
|
||||||
<RepositoryBuildOrder Include="MetaPackages" Order="13" />
|
<RepositoryBuildOrder Include="MetaPackages" Order="13" />
|
||||||
<RepositoryBuildOrder Include="Mvc" Order="14" />
|
<RepositoryBuildOrder Include="Mvc" Order="14" />
|
||||||
|
|
|
||||||
|
|
@ -87,6 +87,6 @@
|
||||||
<ShippedRepository Include="SignalR" />
|
<ShippedRepository Include="SignalR" />
|
||||||
<ShippedRepository Include="StaticFiles" />
|
<ShippedRepository Include="StaticFiles" />
|
||||||
<ShippedRepository Include="Testing" />
|
<ShippedRepository Include="Testing" />
|
||||||
<ShippedRepository Include="WebSockets" />
|
<ShippedRepository Include="WebSockets" RootPath="$(RepositoryRoot)src\WebSockets\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 67f2c3149efd03511794ed64726a196ee0b1ab36
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
@ECHO OFF
|
||||||
|
SET RepoRoot="%~dp0..\.."
|
||||||
|
%RepoRoot%\build.cmd -LockFile %RepoRoot%\korebuild-lock.txt -Path %~dp0 %*
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
repo_root="$DIR/../.."
|
||||||
|
"$repo_root/build.sh" --path "$DIR" --lockfile "$repo_root/korebuild-lock.txt" "$@"
|
||||||
Loading…
Reference in New Issue