From 89147f4f90889c08af693bb9e44fcfc82f966656 Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Wed, 1 Aug 2018 08:15:42 -0700 Subject: [PATCH] Migrate Linux tests to VSTS --- .vsts-dotnet.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.vsts-dotnet.yml b/.vsts-dotnet.yml index e3b33848b96..fd93826ddc6 100644 --- a/.vsts-dotnet.yml +++ b/.vsts-dotnet.yml @@ -96,3 +96,26 @@ phases: publishLocation: Container continueOnError: true condition: failed() + +- phase: Linux_Test + queue: + name: DotNetCore-Linux + timeoutInMinutes: 90 + parallel: 2 + matrix: + coreclr: + _args: --debug + _name: CoreClr + mono: + _args: --debug --docker --mono + _name: Mono + steps: + - script: ./build/scripts/cibuild.sh $(_args) + - task: PublishBuildArtifacts@1 + inputs: + PathtoPublish: '$(Build.SourcesDirectory)/Binaries/$(_configuration)/Logs' + ArtifactName: 'Linux $(_name)' + publishLocation: Container + continueOnError: true + condition: failed() + -- GitLab