Branching for rel/1.1.0

This commit is contained in:
Pranav K 2016-11-09 11:42:28 -08:00
parent f7fc72dcf2
commit 79195f27ef
1 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ use import="Json"
functions
@{
const string DefaultBuildBranch = "dev";
const string DefaultBuildBranch = "rel/1.1.0";
const string DefaultCoherenceCacheDir = ".coherence-cache";
const string UniverseCommitsFileName = "commits-universe";
const string CoherenceCacheVersionFileName = "coherence-version";
@ -29,7 +29,7 @@ functions
static string baseDir = Directory.GetCurrentDirectory();
static string targetDir = Path.Combine(baseDir, "artifacts", "build");
static string buildBranch = GetEnvironmentParameter("BUILD_BRANCH") ?? DefaultBuildBranch;
static string buildBranch = DefaultBuildBranch;
static string coherencePath = GetEnvironmentParameter("COHERENCE_PATH");
static string dropsShare = GetEnvironmentParameter("ASPNETCI_DROPS_SHARE", DefaultDropsShare);
static string kBuildVersion = GetEnvironmentParameter("DNX_BUILD_VERSION");
@ -215,7 +215,7 @@ var buildTarget = "compile"
if (Environment.GetEnvironmentVariable("UNIVERSE_PUSH_TO_VOLATILE") == "true")
{
Environment.SetEnvironmentVariable("NUGET_PUBLISH_FEED", "https://dotnet.myget.org/F/aspnetcore-volatile-dev/api/v2/package");
Environment.SetEnvironmentVariable("NUGET_PUBLISH_FEED", "https://dotnet.myget.org/F/aspnetcore-volatile-release/api/v2/package");
}
foreach (var batch in batchedRepos)