shithub: aubio

ref: 07b47b1267a5978a1cf3d785e1f66146f2f70bdd
dir: /azure-pipelines.yml/

View raw version
#  configuration file for azure continuous integration
jobs:
- job: linux
  pool:
    vmImage: 'Ubuntu 16.04'

  steps:
  - script: |
      make
    displayName: 'make'
- job: windows
  pool:
    vmIMage: 'VS2017-Win2016'

  steps:
  - script: |
      make
    displayName: 'make'

- job: macos
  pool:
    vmIMage: macOS-10.13

  steps:
  - script: |
      brew update
      brew install sox ffmpeg libsndfile lcov
    displayName: 'brew install sox ffmpeg libsndfile lcov'
  - script: |
      make
    displayName: 'make'