Fixing path separator character to work with both linux and windows.Build DotnetWorker.Extensions.sln as well for tests

This commit is contained in:
Shyju Krishnankutty 2024-09-05 15:02:52 -07:00 коммит произвёл Fabio Cavalcante
Родитель 15c0a8063f
Коммит a7b106277b
3 изменённых файлов: 13 добавлений и 10 удалений

Просмотреть файл

@ -20,7 +20,9 @@ jobs:
inputs:
command: build
arguments: '-c Release'
projects: DotNetWorker.sln
projects: |
DotNetWorker.sln
DotNetWorker.Extensions.sln
- template: /eng/ci/templates/steps/setup-e2e-tests.yml@self
parameters:
@ -36,4 +38,3 @@ jobs:
arguments: '--no-build -c Release --filter "FullyQualifiedName~HttpTrigger"' # only run http tests to avoid emulators on Linux
projects: |
test/**/*Tests.csproj
!test/**/Worker.Extensions.Rpc.Tests.csproj

Просмотреть файл

@ -30,7 +30,9 @@ jobs:
inputs:
command: build
arguments: '-c Release'
projects: DotNetWorker.sln
projects: |
DotNetWorker.sln
DotNetWorker.Extensions.sln
- template: /eng/ci/templates/steps/setup-e2e-tests.yml@self
parameters:

Просмотреть файл

@ -30,7 +30,7 @@ jobs:
command: test
arguments: -v n
projects: |
**\DotNetWorkerTests.csproj
**/DotNetWorkerTests.csproj
- task: DotNetCoreCLI@2
displayName: OpenTelemetry Tests
@ -38,7 +38,7 @@ jobs:
command: test
arguments: -v n
projects: |
**\DotNetWorker.Opentelemetry.Tests.csproj
**/DotNetWorker.Opentelemetry.Tests.csproj
- task: DotNetCoreCLI@2
displayName: Sdk Tests
@ -56,8 +56,8 @@ jobs:
command: test
arguments: -v n
projects: |
**\Worker.Extensions.Http.AspNetCore.Tests.csproj
**\Worker.Extensions.Rpc.Tests.csproj
**\Worker.Extensions.Shared.Tests.csproj
**\Worker.Extensions.SignalRService.Tests.csproj
**\Worker.Extensions.Tests.csproj
**/Worker.Extensions.Http.AspNetCore.Tests.csproj
**/Worker.Extensions.Rpc.Tests.csproj
**/Worker.Extensions.Shared.Tests.csproj
**/Worker.Extensions.SignalRService.Tests.csproj
**/Worker.Extensions.Tests.csproj