remove azure-pipelines.yml for now

pull/1593/head
Alexander Medvednikov 2019-08-12 16:38:58 +03:00 committed by GitHub
parent 2ba1edaa80
commit baa537bfd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 39 deletions

View File

@ -1,39 +0,0 @@
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:
- '*'