File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,11 @@ IF [%$feedCred%] == [] (
3636
3737set exit_code = 0
3838
39- echo " Restore: dotnet restore RunTests\RunTests.csproj --source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json --source https://api.nuget.org/v3/index.json -- ignore-failed-sources... "
40- dotnet restore RunTests\RunTests.csproj --source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json --source https://api.nuget.org/v3/index.json -- ignore-failed-sources
39+ echo " Restore: dotnet restore RunTests\RunTests.csproj --ignore-failed-sources"
40+ dotnet restore RunTests\RunTests.csproj --ignore-failed-sources
4141
42- echo " Running tests: dotnet run --project RunTests\RunTests.csproj -- --target %$target% --runtime %$aspRuntimeVersion% --queue %$queue% --arch %$arch% --quarantined %$quarantined% --ef %$ef% --aspnetruntime %$aspnetruntime% --aspnetref %$aspnetref% --helixTimeout %$helixTimeout% ... "
43- dotnet run --project RunTests\RunTests.csproj -- --target %$target% --runtime %$aspRuntimeVersion% --queue %$queue% --arch %$arch% --quarantined %$quarantined% --ef %$ef% --aspnetruntime %$aspnetruntime% --aspnetref %$aspnetref% --helixTimeout %$helixTimeout%
42+ echo " Running tests: dotnet run --no-restore -- project RunTests\RunTests.csproj -- --target %$target% --runtime %$aspRuntimeVersion% --queue %$queue% --arch %$arch% --quarantined %$quarantined% --ef %$ef% --aspnetruntime %$aspnetruntime% --aspnetref %$aspnetref% --helixTimeout %$helixTimeout% "
43+ dotnet run --no-restore -- project RunTests\RunTests.csproj -- --target %$target% --runtime %$aspRuntimeVersion% --queue %$queue% --arch %$arch% --quarantined %$quarantined% --ef %$ef% --aspnetruntime %$aspnetruntime% --aspnetref %$aspnetref% --helixTimeout %$helixTimeout%
4444if errorlevel neq 0 (
4545 set exit_code = %errorlevel%
4646)
Original file line number Diff line number Diff line change 6161sync
6262
6363exit_code=0
64- echo " Restore: $DOTNET_ROOT /dotnet restore RunTests/RunTests.csproj --source https://api.nuget.org/v3/index.json --ignore-failed-sources..."
65- $DOTNET_ROOT /dotnet restore RunTests/RunTests.csproj --source https://api.nuget.org/v3/index.json --ignore-failed-sources
66- echo " Running tests: $DOTNET_ROOT /dotnet run --project RunTests/RunTests.csproj -- --target $1 --runtime $4 --queue $5 --arch $6 --quarantined $7 --ef $8 --aspnetruntime $9 --aspnetref ${10} --helixTimeout ${11} "
67- $DOTNET_ROOT /dotnet run --project RunTests/RunTests.csproj -- --target $1 --runtime $4 --queue $5 --arch $6 --quarantined $7 --ef $8 --aspnetruntime $9 --aspnetref ${10} --helixTimeout ${11}
64+
65+ echo " Restore: $DOTNET_ROOT /dotnet restore RunTests/RunTests.csproj --ignore-failed-sources"
66+ $DOTNET_ROOT /dotnet restore RunTests/RunTests.csproj --ignore-failed-sources
67+
68+ echo " Running tests: $DOTNET_ROOT /dotnet run --no-restore --project RunTests/RunTests.csproj -- --target $1 --runtime $4 --queue $5 --arch $6 --quarantined $7 --ef $8 --aspnetruntime $9 --aspnetref ${10} --helixTimeout ${11} "
69+ $DOTNET_ROOT /dotnet run --no-restore --project RunTests/RunTests.csproj -- --target $1 --runtime $4 --queue $5 --arch $6 --quarantined $7 --ef $8 --aspnetruntime $9 --aspnetref ${10} --helixTimeout ${11}
6870exit_code=$?
6971echo " Finished tests...exit_code=$exit_code "
7072
You can’t perform that action at this time.
0 commit comments