Skip to content

Commit

Permalink
Merge pull request #520 from hal-ler/publishlinux
Browse files Browse the repository at this point in the history
Updated Travis/Linux build to publish for all Linux runtimes.
  • Loading branch information
david-driscoll committed Apr 14, 2016
2 parents 2f90950 + 21a7c04 commit 8aa8461
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,17 @@ Task("PopulateRuntimes")
{
buildPlan.Rids = new string[] {"default", "win7-x86"};
}
else if (string.Equals(EnvironmentVariable("TRAVIS_OS_NAME"), "linux"))
{
buildPlan.Rids = new string[]
{
"default", // To allow testing the published artifact
"ubuntu.14.04-x64",
"centos.7-x64",
"rhel.7.2-x64",
"debian.8.2-x64"
};
}
else
{
buildPlan.Rids = new string[] {"default"};
Expand Down

0 comments on commit 8aa8461

Please sign in to comment.