Skip to content

Commit

Permalink
Update azure-pipelines.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew breja authored Feb 21, 2019
1 parent 6af91c4 commit e4c7ef8
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
# 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-16.04'

steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'

- script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'
jobs:
- job: Linux
pool:
vmImage: 'Ubuntu-16.04'
steps:
- script: sudo apt-get install ninja-build gettext libtool libtool-bin autoconf automake cmake g++ pkg-config unzip
displayName: 'install dependencies'

- job: macOS
pool:
vmImage: 'macOS-10.14'
steps:
- script: brew install ninja libtool automake cmake pkg-config gettext
displayName: 'install dependencies'

- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- script: echo wut
displayName: 'install dependencies'

0 comments on commit e4c7ef8

Please sign in to comment.