Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add diagnostic information to the ado pipeline #7367

Merged
merged 11 commits into from
Feb 2, 2025
9 changes: 9 additions & 0 deletions eng/pipelines/templates/BuildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ steps:
- script: dotnet dev-certs https
displayName: Install dev-certs


davidfowl marked this conversation as resolved.
Show resolved Hide resolved
- script: |
docker container ls
docker network ls
docker network prune -f
displayName: List Docker containers and networks, and prune networks

- script: ${{ parameters.dotnetScript }} dotnet-coverage collect
--settings $(Build.SourcesDirectory)/eng/CodeCoverage.config
--output ${{ parameters.repoTestResultsPath }}/NonHelix.cobertura.xml
Expand All @@ -71,6 +78,8 @@ steps:
DISABLE_PLAYWRIGHT_TESTS: ${{ ne(parameters.isWindows, 'true') }}
# https://github.com/dotnet/aspire/issues/5195#issuecomment-2271687822
DOTNET_ASPIRE_DEPENDENCY_CHECK_TIMEOUT: 180
DCP_DIAGNOSTICS_LOG_LEVEL: debug
DCP_DIAGNOSTICS_LOG_FOLDER: ${{ parameters.repoTestResultsPath }}

displayName: Run non-helix tests

Expand Down
Loading