Commit d47fce20 authored by Nick Craver's avatar Nick Craver

Day 34: The Appveyor war does not go well. Send help.

parent ed1f8253
@echo off
echo Starting Redis wrapper...
call %~dp0\start-all.cmd
echo Servers really started, we hope.
exit /b 0
\ No newline at end of file
......@@ -14,7 +14,8 @@ nuget:
disable_publish_on_pr: true
build_script:
- ps: .\build.ps1 -LaunchServers -BuildNumber "$env:APPVEYOR_BUILD_NUMBER" -Version "$env:APPVEYOR_REPO_TAG_NAME" -PullRequestNumber "$env:APPVEYOR_PULL_REQUEST_NUMBER" -CreatePackages $true
- cmd: .\RedisConfigs\appveyor.cmd
- ps: .\build.ps1 -BuildNumber "$env:APPVEYOR_BUILD_NUMBER" -Version "$env:APPVEYOR_REPO_TAG_NAME" -PullRequestNumber "$env:APPVEYOR_PULL_REQUEST_NUMBER" -CreatePackages $true
test: off
artifacts:
......
......@@ -4,7 +4,6 @@ param(
[string] $BuildNumber,
[bool] $CreatePackages,
[bool] $RunTests = $true,
[switch] $LaunchServers,
[string] $PullRequestNumber
)
......@@ -65,10 +64,6 @@ if ($PullRequestNumber) {
$CreatePackages = $false
}
if ($LaunchServers) {
& .\RedisConfigs\start-all.cmd
}
if ($RunTests) {
dotnet restore /ConsoleLoggerParameters:Verbosity=Quiet
foreach ($project in $testsToRun) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment