Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
# See: https://blog.travis-ci.com/2017-12-12-new-trusty-images-q4-launch
group: deprecated-2017Q4

# Only build master branch (if not a PR)
branches:
only:
- master

os:
- linux
- osx
Expand Down
3 changes: 2 additions & 1 deletion conda-build-all
Original file line number Diff line number Diff line change
Expand Up @@ -425,12 +425,13 @@ def build_package(m, python, numpy, args):

if args.upload is not None:
if (retcode == 0):
print('Package build succeeded. Uploading to anaconda for user "%s".' % str(args.upload))
upload_to_binstar(m, python, numpy, username=args.upload,
force=args.force, dev=args.dev)
else:
print('Package failed to build (return code %s); will not upload.' % str(retcode))

#clean_builds()
clean_builds()

sys.stdout.flush()
return retcode
Expand Down