-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEV: add conda_build_matrix.py to help upload packages
- Loading branch information
Joe Jevnik
committed
Feb 25, 2016
1 parent
88e4758
commit e45a973
Showing
2 changed files
with
108 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,95 @@ | ||
from itertools import product | ||
import os | ||
import subprocess | ||
|
||
import click | ||
|
||
py_versions = ('2.7', '3.4') | ||
numpy_versions = ('1.9', '1.10') | ||
npy_versions = ('1.9', '1.10') | ||
zipline_path = os.path.join( | ||
os.path.dirname(__file__), | ||
'..', | ||
'conda', | ||
'zipline', | ||
) | ||
|
||
|
||
def mkargs(py_version, npy_version, output=False): | ||
return { | ||
'args': [ | ||
'conda', | ||
'build', | ||
zipline_path, | ||
'-c', 'quantopian', | ||
'--python=%s' % py_version, | ||
'--numpy=%s' % npy_version, | ||
] + (['--output'] if output else []), | ||
'stdout': subprocess.PIPE, | ||
'stderr': subprocess.PIPE, | ||
} | ||
|
||
|
||
@click.command() | ||
@click.option( | ||
'--upload', | ||
is_flag=True, | ||
default=False, | ||
help='Upload packages after building', | ||
) | ||
@click.option( | ||
'--upload-only', | ||
is_flag=True, | ||
default=False, | ||
help='Upload the last built packages without rebuilding.', | ||
) | ||
@click.option( | ||
'--user', | ||
default='quantopian', | ||
help='The anaconda account to upload to.', | ||
) | ||
def main(upload, upload_only, user): | ||
if upload_only: | ||
# if you are only uploading you shouldn't need to specify both flags | ||
upload = True | ||
procs = ( | ||
( | ||
py_version, | ||
npy_version, | ||
(subprocess.Popen(**mkargs(py_version, npy_version)) | ||
if not upload_only else | ||
None), | ||
) | ||
for py_version, npy_version in product(py_versions, npy_versions) | ||
) | ||
status = 0 | ||
files = [] | ||
for py_version, npy_version, proc in procs: | ||
if not upload_only: | ||
out, err = proc.communicate() | ||
if proc.returncode: | ||
status = 1 | ||
print('build failure: python=%s numpy=%s\n%s' % ( | ||
py_version, | ||
npy_version, | ||
err.decode('utf-8'), | ||
)) | ||
elif upload: | ||
files.append(subprocess.Popen( | ||
**mkargs(py_version, npy_version, output=True) | ||
).communicate()[0].decode('utf-8').strip()) | ||
|
||
def main(): | ||
for pair in product(py_versions, numpy_versions): | ||
os.system('conda build conda/zipline -c quantopian ' | ||
'--python=%s --numpy=%s' % pair) | ||
if not status and upload: | ||
for f in files: | ||
p = subprocess.Popen( | ||
['anaconda', 'upload', '-u', user, f], | ||
stdout=subprocess.DEVNULL, | ||
stderr=subprocess.DEVNULL, | ||
) | ||
out, err = p.communicate() | ||
if p.returncode: | ||
print('failed to upload: %s\n%s' % (f, err.decode('utf-8'))) | ||
return status | ||
|
||
|
||
if __name__ == '__main__': | ||
main() | ||
exit(main()) |