From 99728865590566531eec13eae5d86756bd092228 Mon Sep 17 00:00:00 2001 From: Paul Knopf Date: Mon, 15 Apr 2019 00:21:58 -0400 Subject: [PATCH] t --- azure-pipelines.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fc184589..fd5aa72b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,15 +10,16 @@ strategy: matrix: linux: imageName: 'ubuntu-16.04' + ci-script: ./build.linux.sh mac: imageName: 'macos-10.13' + ci-script: ./build.osx.sh windows: imageName: 'vs2017-win2016' + ci-script: ./build.windows.bat steps: - task: DotNetCoreInstaller@0 inputs: version: '2.2.203' -- script: dotnet tool install -g GitVersion.Tool --version 5.0.0-beta2-64 -- script: dotnet gitversion > version.json -- script: dotnet --version \ No newline at end of file +- script: $(ci-scipt) \ No newline at end of file