reanimate/azure-pipelines.yml
David Himmelstrup f3ae9dd158 Azure pipeline builds on linux, mac, and windows, with lts-13, lts-12, and lts-11. (#6)
Former-commit-id: 6601430ad697969649cebdc333481e09aec9569d
2019-09-14 17:35:01 +08:00

30 lines
906 B
YAML

# This is the complex Azure configuration, which is intended for use
# on open source libraries which need compatibility across multiple GHC
# versions, must work with cabal-install, and should be
# cross-platform. For more information and other options, see:
#
# https://docs.haskellstack.org/en/stable/azure_ci/
#
# Copy these contents into the root directory of your Github project in a file
# named azure-pipelines.yml
#
# For better organization, you split various jobs into seprate parts
# and each of them are controlled via individual file.
jobs:
- template: ./.azure/azure-linux-template.yml
parameters:
name: Linux
vmImage: ubuntu-latest
os: linux
- template: ./.azure/azure-osx-template.yml
parameters:
name: macOS
vmImage: macOS-10.14
os: osx
- template: ./.azure/azure-windows-template.yml
parameters:
name: Windows
vmImage: windows-latest
os: windows