reanimate/azure-pipelines.yml
David Himmelstrup 804fd13bdd Add using azure.
2019-07-06 19:34:51 +08:00

20 lines
508 B
YAML

# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- script: |
mkdir -p ~/.local/bin
curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
displayName: 'Install stack'
- script: |
stack build
displayName: 'Build reanimate'