Changeset b801583


Ignore:
Timestamp:
Sep 24, 2018, 11:09:38 PM (6 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
Children:
6e4dc1b
Parents:
205fe43
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • .appveyor.yml

    r205fe43 rb801583  
    6363
    6464build_script:
     65  # also build libaubio with waf
     66  - python waf distclean configure build install --verbose --msvc_version="msvc 14.0"
    6567  # build python module without using libaubio
    6668  - pip wheel -v -v -v --wheel-dir=dist .
    67   # also build libaubio with waf
    68   - python waf distclean configure build install --verbose --msvc_version="msvc 14.0"
     69 - ps: |
     70      # build, upload and install wheel (inspired by numpy's appveyor)
     71      pip wheel -v -v -v --wheel-dir=dist .
     72      ls dist -r | Foreach-Object {
     73          Push-AppveyorArtifact $_.FullName
     74          pip install $_.FullName
     75      }
    6976
    7077test_script:
Note: See TracChangeset for help on using the changeset viewer.