Fix checking the contents of the sourcelink file on windows.
[mono-project.git] / azure-pipelines.yml
blob09555b252702bd64afb1acd439229edbb833faa9
1 # Starter pipeline
2 # Start with a minimal pipeline that you can customize to build and deploy your code.
3 # Add steps that build, run tests, deploy, and more:
4 # https://aka.ms/yaml
6 jobs:
7 - job: Linux
8   pool:
9     vmImage: 'ubuntu-16.04'
11   steps:
12   - script: |
13       ./autogen.sh --prefix=/tmp/test-install --disable-nls --disable-btls --disable-boehm
14     displayName: 'Autogen + Configure'
16   - script: |
17       make
18     displayName: 'Build Mono'
20   - script: |
21       make install
22     displayName: 'Install new version of Mono into /tmp'
24 - job: macOS
25   pool:
26     vmImage: 'macOS-10.13'
28   steps:
29   - script: |
30       brew install libtool automake autoconf || brew upgrade libtool automake autoconf
31     displayName: 'Install Dependencies'
32   - script: |
33       ./autogen.sh --prefix=/tmp/test-install --disable-nls --disable-btls --disable-boehm
34     displayName: 'Autogen + Configure'
36   - script: |
37       make
38     displayName: 'Build Mono'
40   - script: |
41       make install
42     displayName: 'Install new version of Mono into /tmp'