Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Differences between aspnetcidev and aspnetvnext?

What are the differences between aspnetcidev and aspnetvnext?

I see that aspnetcidev says "quick builds", but what does this mean?

like image 658
roydukkey Avatar asked Jan 04 '16 17:01

roydukkey


1 Answers

Jan 29, 2016 edit:

This information is now part of the ASP.NET wiki: https://github.com/aspnet/Home/wiki/NuGet-feeds


The ASP.NET build system uses 3 myget feeds for each branch + nuget.org.

  • aspnetvolatile<branch> (aspnetvolatiledev/aspnetvolatilerelease)
  • aspnetci<branch> (aspnetcidev/aspnetcirelease)
  • aspnetvnext (dev branch)/aspnetrelease (release branch)

After each repo under github.com/aspnet builds successfully, each package produced by it is pushed to the corresponding volatile feed.

After the graph of repos is build, we trigger the Coherence build. This build verifies that the packages have matching versions and their references are correct (that they are coherent). Then, it pushes them to aspnetci<branch>.

Once the Coherence build passes, we run all our tests on the packages in the aspnetci<branch> feed. If the tests pass, we sign the packages and ship them to aspnetvnext or aspnetrelease

So the differences are:

  • aspnetvolatile<branch>

    • latest packages
    • possible not coherent
    • not tested
    • not signed
    • updated on every checkin
    • mostly used to diagnose build failure
  • aspnetci<branch>

    • possible not latest
    • coherent
    • not tested
    • not signed
    • updated when all repos build successfully
    • used by our build system
  • aspnetvnext/ (aspnetrelease|nuget.org)

    • possible not latest
    • coherent
    • signed
    • tested
    • updated when everything works
    • used for stable packages

Once the aspnetcirelease feed is stable, we push the packages from it to nuget.org.

Unless you work on developing new features for ASP.NET, I recommend that you use aspnetvnext (for dev bits) or nuget.org (for release bits). The release feed (aspnetrelease) is just a staging feed and it's not always in a good shape.

Edit:

I think it's easier to understand from a table: enter image description here

like image 92
Victor Hurdugaci Avatar answered Oct 18 '22 15:10

Victor Hurdugaci