summaryrefslogtreecommitdiff
path: root/appveyor
diff options
context:
space:
mode:
authorMichal Nowikowski <godfryd@gmail.com>2014-09-22 05:55:23 +0200
committerMichal Nowikowski <godfryd@gmail.com>2014-09-22 05:55:23 +0200
commit3d7f92cbfbdb9fb4c1dd5f479cd4ba04bdeb4f25 (patch)
tree87a72ddb291282370b5cbabc2a4c1e73b8f1e9dc /appveyor
parentf01bff14710891ad28f351c608aa6a316eeb2372 (diff)
downloadpylint-3d7f92cbfbdb9fb4c1dd5f479cd4ba04bdeb4f25.tar.gz
Added support for AppVeroy for CI on Windowswin-ci-5
Diffstat (limited to 'appveyor')
-rw-r--r--appveyor/install.ps127
1 files changed, 27 insertions, 0 deletions
diff --git a/appveyor/install.ps1 b/appveyor/install.ps1
new file mode 100644
index 0000000..e13c388
--- /dev/null
+++ b/appveyor/install.ps1
@@ -0,0 +1,27 @@
+# Sample script to install pip under Windows
+# Authors: Olivier Grisel, Jonathan Helmus and Kyle Kastner
+# License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/
+
+$GET_PIP_URL = "https://bootstrap.pypa.io/get-pip.py"
+$GET_PIP_PATH = "C:\get-pip.py"
+
+
+function InstallPip ($python_home) {
+ $pip_path = $python_home + "\Scripts\pip.exe"
+ $python_path = $python_home + "\python.exe"
+ if (-not(Test-Path $pip_path)) {
+ Write-Host "Installing pip..."
+ $webclient = New-Object System.Net.WebClient
+ $webclient.DownloadFile($GET_PIP_URL, $GET_PIP_PATH)
+ Write-Host "Executing:" $python_path $GET_PIP_PATH
+ Start-Process -FilePath "$python_path" -ArgumentList "$GET_PIP_PATH" -Wait -Passthru
+ } else {
+ Write-Host "pip already installed."
+ }
+}
+
+function main () {
+ InstallPip $env:PYTHON
+}
+
+main