From b8015830caa89ef3921831aa0beba232ac431f82 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 24 Sep 2018 23:09:38 +0200 Subject: [PATCH] .appveyor.yml: use powershell to upload and install wheel --- .appveyor.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 1efbb422..efd37901 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -62,10 +62,17 @@ before_build: - "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" -- 2.11.0