shithub: aubio

Download patch

ref: b8015830caa89ef3921831aa0beba232ac431f82
parent: 205fe439f83101e6e5bd19317dde02448b2d8c38
author: Paul Brossier <piem@piem.org>
date: Mon Sep 24 19:09:38 EDT 2018

.appveyor.yml: use powershell to upload and install wheel

--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -62,10 +62,17 @@
   - "bash scripts/get_waf.sh"
 
 build_script:
-  # build python module without using libaubio
-  - pip wheel -v -v -v --wheel-dir=dist .
   # also build libaubio with waf
   - python waf distclean configure build install --verbose --msvc_version="msvc 14.0"
+  # build python module without using libaubio
+  - pip wheel -v -v -v --wheel-dir=dist .
+ - ps: |
+      # build, upload and install wheel (inspired by numpy's appveyor)
+      pip wheel -v -v -v --wheel-dir=dist .
+      ls dist -r | Foreach-Object {
+          Push-AppveyorArtifact $_.FullName
+          pip install $_.FullName
+      }
 
 test_script:
   - "python python\\demos\\demo_create_test_sounds.py"