Skip to content

Commit 0985785

Browse files
committed
Fix conflict: blazor fail on non-self-contained
1 parent de4b68b commit 0985785

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

smoke-test.sh

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ function doCommand() {
233233
$killCommand
234234
wait $!
235235
echo " terminated with exit code $?" | tee -a "$logFile"
236-
elif [ "$1" == "publish" ]; then
236+
elif [ "$1" == "multi-rid-publish" ]; then
237237
runPublishScenarios() {
238238
"${dotnetCmd}" publish --self-contained false /bl:"${binlogPrefix}publish-fx-dep.binlog"
239239
"${dotnetCmd}" publish --self-contained true -r $targetRid /bl:"${binlogPrefix}publish-self-contained-${targetRid}.binlog"
@@ -282,18 +282,18 @@ function setupDevCerts() {
282282
function runAllTests() {
283283
# Run tests for each language and template
284284
if [ "$excludeNonWebTests" == "false" ]; then
285-
doCommand C# console new restore build run publish
286-
doCommand C# classlib new restore build publish
285+
doCommand C# console new restore build run multi-rid-publish
286+
doCommand C# classlib new restore build multi-rid-publish
287287
doCommand C# xunit new restore test
288288
doCommand C# mstest new restore test
289289

290-
doCommand VB console new restore build run publish
291-
doCommand VB classlib new restore build publish
290+
doCommand VB console new restore build run multi-rid-publish
291+
doCommand VB classlib new restore build multi-rid-publish
292292
doCommand VB xunit new restore test
293293
doCommand VB mstest new restore test
294294

295-
doCommand F# console new restore build run publish
296-
doCommand F# classlib new restore build publish
295+
doCommand F# console new restore build run multi-rid-publish
296+
doCommand F# classlib new restore build multi-rid-publish
297297
doCommand F# xunit new restore test
298298
doCommand F# mstest new restore test
299299
fi
@@ -313,16 +313,16 @@ function runAllTests() {
313313
}
314314

315315
function runWebTests() {
316-
doCommand C# web "$@" new restore build run publish
317-
doCommand C# mvc "$@" new restore build run publish
318-
doCommand C# webapi "$@" new restore build run publish
319-
doCommand C# razor "$@" new restore build run publish
316+
doCommand C# web "$@" new restore build run multi-rid-publish
317+
doCommand C# mvc "$@" new restore build run multi-rid-publish
318+
doCommand C# webapi "$@" new restore build multi-rid-publish
319+
doCommand C# razor "$@" new restore build run multi-rid-publish
320320
doCommand C# blazorwasm "$@" new restore build run publish
321321
doCommand C# blazorserver "$@" new restore build run publish
322322

323-
doCommand F# web "$@" new restore build run publish
324-
doCommand F# mvc "$@" new restore build run publish
325-
doCommand F# webapi "$@" new restore build run publish
323+
doCommand F# web "$@" new restore build run multi-rid-publish
324+
doCommand F# mvc "$@" new restore build run multi-rid-publish
325+
doCommand F# webapi "$@" new restore build run multi-rid-publish
326326
}
327327

328328
function resetCaches() {

0 commit comments

Comments
 (0)