aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-05-19 18:23:05 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2018-05-19 19:23:33 -0700
commit3fc199dc52c4c6152ee83e95474a18bb076549e5 (patch)
tree94fdd153f4e4a30422b47f903b5279df2428461c /scripts
parentf1653a23d5a4a1f4ce8b4d034594526a649de0d1 (diff)
downloadvcpkg-3fc199dc52c4c6152ee83e95474a18bb076549e5.tar.gz
vcpkg-3fc199dc52c4c6152ee83e95474a18bb076549e5.zip
Remove unused internalCI.ps1
Diffstat (limited to 'scripts')
-rw-r--r--scripts/internalCI.ps122
1 files changed, 0 insertions, 22 deletions
diff --git a/scripts/internalCI.ps1 b/scripts/internalCI.ps1
deleted file mode 100644
index 9529c3766..000000000
--- a/scripts/internalCI.ps1
+++ /dev/null
@@ -1,22 +0,0 @@
-$ErrorActionPreference = "Stop"
-
-rm TEST-internal-ci.xml -errorAction SilentlyContinue
-
-New-Item -type directory downloads -errorAction SilentlyContinue | Out-Null
-./scripts/bootstrap.ps1
-if (-not $?) { throw $? }
-
-# Clear out any intermediate files from the previous build
-if (Test-Path buildtrees)
-{
- Get-ChildItem buildtrees/*/* | ? { $_.Name -ne "src" } | Remove-Item -Recurse -Force
-}
-
-# Purge any outdated packages
-./vcpkg remove --outdated --recurse
-if (-not $?) { throw $? }
-
-./vcpkg.exe install azure-storage-cpp cpprestsdk:x64-windows-static cpprestsdk:x86-uwp `
-bond cryptopp zlib expat sdl2 curl sqlite3 libuv protobuf:x64-windows sfml opencv:x64-windows uwebsockets uwebsockets:x64-windows-static `
-opencv:x86-uwp boost:x86-uwp --keep-going "--x-xunit=TEST-internal-ci.xml" --recurse
-if (-not $?) { throw $? }