mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-21 06:45:32 -06:00
25 lines
No EOL
573 B
YAML
25 lines
No EOL
573 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
|
|
|
|
pool:
|
|
vmImage: $(imageName)
|
|
|
|
strategy:
|
|
matrix:
|
|
linux:
|
|
imageName: 'ubuntu-16.04'
|
|
ci-script: ./build/build.linux.sh
|
|
mac:
|
|
imageName: 'macos-10.13'
|
|
ciScript: ./build/build.osx.sh
|
|
windows:
|
|
imageName: 'vs2017-win2016'
|
|
ciScript: ./build/build.windows.bat
|
|
|
|
steps:
|
|
- task: DotNetCoreInstaller@0
|
|
inputs:
|
|
version: '2.2.203'
|
|
- script: $(ciScript) |