From a4317a0656110763d113889fcd94d85a0ad7faca Mon Sep 17 00:00:00 2001 From: Austin Marshall Date: Fri, 28 Apr 2017 12:28:21 -0700 Subject: [PATCH] move zip logic into 'build_script' --- appveyor.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 9cff2c10b3..d2aa9f1e1d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -74,6 +74,8 @@ build_script: - python setup.py bdist_wheel - ps: ls -l dist + - 7z a nupic-%APPVEYOR_REPO_COMMIT%.zip .\dist\nupic-%NUPIC_VERSION%-py2-none-any.whl + - ps: ls -l . - ps: move .\dist\nupic-$env:NUPIC_VERSION-py2-none-any.whl .\dist\nupic-$env:NUPIC_VERSION-cp27-none-win_amd64.whl test_script: @@ -101,9 +103,6 @@ test_script: # Python integration tests - py.test tests\integration -after_build: - - 7z a nupic-$(APPVEYOR_REPO_COMMIT).zip .\dist\nupic-*.whl - artifacts: - path: 'dist\*.whl' # Find all wheel files in project root only (non-recusive) - path: nupic-$(APPVEYOR_REPO_COMMIT).zip