From: Paul Brossier Date: Mon, 24 Sep 2018 21:09:38 +0000 (+0200) Subject: .appveyor.yml: use powershell to upload and install wheel X-Git-Tag: 0.4.8~100^2~8 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=b8015830caa89ef3921831aa0beba232ac431f82;p=aubio.git .appveyor.yml: use powershell to upload and install wheel --- 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"