-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
39 lines (39 loc) · 881 Bytes
/
azure-pipelines.yml
File metadata and controls
39 lines (39 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
jobs:
- job: LinuxBuild
pool:
vmImage: 'ubuntu-16.04'
displayName: "V Linux Build"
steps:
- script: |
sudo apt install -y libglfw3 libglfw3-dev libfreetype6-dev libcurl3-dev
displayName: 'Install Dependencies'
- script: |
make
displayName: 'Build V'
- script: |
make test
displayName: 'Run Tests'
- job: WindowsBuild
pool:
vmImage: 'vs2017-win2016'
displayName: "V Windows Build"
- job: OSXBuild
pool:
vmImage: 'macOS-10.13'
displayName: "V MacOSX Build"
steps:
- script: |
brew install glfw freetype curl
displayName: 'Install Dependencies'
- script: |
make && make test
displayName: 'Build V'
trigger:
branches:
include:
- '*'
pr:
autoCancel: false
branches:
include:
- '*'