dotnet / machinelearning

ML.NET is an open source and cross-platform machine learning framework for .NET.
https://dot.net/ml
MIT License
9.02k stars 1.88k forks source link

Move official build yaml from phases to jobs #3926

Open eerhardt opened 5 years ago

eerhardt commented 5 years ago

We need to make the same change as #3908 to the official build yaml file:

https://github.com/dotnet/machinelearning/blob/master/build/vsts-ci.yml

"phases" in AzDO yaml files are the old schema. We should be using "jobs", which is the "new" schema.

See https://github.com/dotnet/arcade/blob/master/Documentation/AzureDevOps/PhaseToJobSchemaChange.md for more info.

codemzs commented 5 years ago

fixed by https://github.com/dotnet/machinelearning/pull/3908

eerhardt commented 5 years ago

There are 2 yaml files in the repo - PR validation and the official build. #3908 only changed the former. This issue is to make the same change to the latter.