Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-395-appveyor-failures f0d2fcbd2 -> 8ddad8a1f (forced update)
ARIA-395 Fix AppVeyor failures due to use of SSL Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/8ddad8a1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/8ddad8a1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/8ddad8a1 Branch: refs/heads/ARIA-395-appveyor-failures Commit: 8ddad8a1f9c42842600c79493c2b705cf0725a67 Parents: 737fff5 Author: Tal Liron <[email protected]> Authored: Mon Oct 23 12:08:59 2017 -0500 Committer: Tal Liron <[email protected]> Committed: Mon Oct 23 13:55:55 2017 -0500 ---------------------------------------------------------------------- appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/8ddad8a1/appveyor.yml ---------------------------------------------------------------------- diff --git a/appveyor.yml b/appveyor.yml index a03b180..ab95698 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -26,7 +26,9 @@ build: false install: - SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH% - - ps: (new-object System.Net.WebClient).Downloadfile('https://bootstrap.pypa.io/get-pip.py', 'C:\Users\appveyor\get-pip.py') + # Note: bootstrap.pypa.io seems to have an SSL configuration problem; we will instead get the script from GitHub + # -ps: (new-object System.Net.WebClient).Downloadfile('https://bootstrap.pypa.io/get-pip.py', 'C:\Users\Emblem Parade\Desktop\get-pip.py') + - ps: (new-object System.Net.WebClient).Downloadfile('https://github.com/pypa/get-pip/blob/master/get-pip.py', 'C:\Users\appveyor\get-pip.py') - ps: Start-Process -FilePath "C:\Python27\python.exe" -ArgumentList "C:\Users\appveyor\get-pip.py" -Wait -Passthru before_test:
