summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2016-06-12 23:11:04 +0200
committerGiampaolo Rodola <g.rodola@gmail.com>2016-06-12 23:11:04 +0200
commit81d449feb5729bc97a871ab84353ff2ad5c6153f (patch)
tree32ffd871291498abf483ac2b9f6c286e8580558d /.ci
parentda251bf5e37cd243cba40df8fb4a9a261f993226 (diff)
downloadpsutil-81d449feb5729bc97a871ab84353ff2ad5c6153f.tar.gz
win / CI: try not to upgrade pip version and see whether pip produces compatible wheels
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/appveyor/download_exes.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/.ci/appveyor/download_exes.py b/.ci/appveyor/download_exes.py
index b7baf6bc..f5cac4e2 100755
--- a/.ci/appveyor/download_exes.py
+++ b/.ci/appveyor/download_exes.py
@@ -19,6 +19,7 @@ import multiprocessing
import os
import requests
import shutil
+import sys
from concurrent.futures import ThreadPoolExecutor
@@ -71,7 +72,10 @@ def get_file_urls(options):
data = data.json()
for item in data:
file_url = job_url + '/' + item['fileName']
+ print(file_url)
urls.append(file_url)
+ if not urls:
+ sys.exit("no artifacts found")
for url in sorted(urls, key=lambda x: os.path.basename(x)):
yield url