Skip to content

Commit

Permalink
Merge pull request grpc#7682 from apolcyn/add_runtime_nodes_back_in_ga
Browse files Browse the repository at this point in the history
add all runtime nodes back into testing packages
  • Loading branch information
nicolasnoble authored Aug 11, 2016
2 parents f2d8c60 + 6bfe7da commit 4e74104
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 9 deletions.
5 changes: 5 additions & 0 deletions src/csharp/Grpc.Examples.MathClient/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@
}
}
},
"runtimes": {
"win7-x64": { },
"debian.8-x64": { },
"osx.10.11-x64": { }
},

"dependencies": {
"Grpc.Examples": {
Expand Down
5 changes: 5 additions & 0 deletions src/csharp/Grpc.Examples.MathServer/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@
}
}
},
"runtimes": {
"win7-x64": { },
"debian.8-x64": { },
"osx.10.11-x64": { }
},

"dependencies": {
"Grpc.Examples": {
Expand Down
3 changes: 2 additions & 1 deletion src/csharp/Grpc.Examples/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@
"System.IO": ""
}
},
"netstandard1.5": {
"netcoreapp1.0": {
"imports": [
"portable-net45"
],
"dependencies": {
"Microsoft.NETCore.App": "1.0.0",
"NETStandard.Library": "1.6.0"
}
}
Expand Down
5 changes: 5 additions & 0 deletions src/csharp/Grpc.IntegrationTesting.QpsWorker/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@
}
}
},
"runtimes": {
"win7-x64": { },
"debian.8-x64": { },
"osx.10.11-x64": { }
},

"dependencies": {
"Grpc.IntegrationTesting": {
Expand Down
5 changes: 5 additions & 0 deletions src/csharp/Grpc.IntegrationTesting.StressClient/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@
}
}
},
"runtimes": {
"win7-x64": { },
"debian.8-x64": { },
"osx.10.11-x64": { }
},

"dependencies": {
"Grpc.IntegrationTesting": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%YAML 1.2
--- |
{
<%include file="../build_options.include" args="executable=True,includeRuntimes=False"/>
<%include file="../build_options.include" args="executable=True"/>
"dependencies": {
"Grpc.Examples": {
"target": "project"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%YAML 1.2
--- |
{
<%include file="../build_options.include" args="executable=True,includeRuntimes=False"/>
<%include file="../build_options.include" args="executable=True"/>
"dependencies": {
"Grpc.Examples": {
"target": "project"
Expand Down
3 changes: 2 additions & 1 deletion templates/src/csharp/Grpc.Examples/project.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@
"System.IO": ""
}
},
"netstandard1.5": {
"netcoreapp1.0": {
"imports": [
"portable-net45"
],
"dependencies": {
"Microsoft.NETCore.App": "1.0.0",
"NETStandard.Library": "1.6.0"
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%YAML 1.2
--- |
{
<%include file="../build_options.include" args="executable=True,includeData=True,includeRuntimes=False"/>
<%include file="../build_options.include" args="executable=True,includeData=True"/>
"dependencies": {
"Grpc.IntegrationTesting": {
"target": "project"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%YAML 1.2
--- |
{
<%include file="../build_options.include" args="executable=True,includeData=True,includeRuntimes=False"/>
<%include file="../build_options.include" args="executable=True,includeData=True"/>
"dependencies": {
"Grpc.IntegrationTesting": {
"target": "project"
Expand Down
4 changes: 1 addition & 3 deletions templates/src/csharp/build_options.include
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%page args="executable=False,includeData=False,includeRuntimes=True"/>\
<%page args="executable=False,includeData=False"/>\
"buildOptions": {
% if executable:
"emitEntryPoint": true
Expand Down Expand Up @@ -52,10 +52,8 @@
}
},
%endif
% if includeRuntimes:
"runtimes": {
"win7-x64": { },
"debian.8-x64": { },
"osx.10.11-x64": { }
},
% endif

0 comments on commit 4e74104

Please sign in to comment.