From 9754e5d68bbac8f50d9f4c7b18fc5438109e0c40 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Thu, 6 Feb 2025 17:40:56 -0800 Subject: [PATCH 1/2] Collect dcp logs from gha runs --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9a2110119a1..f4e90e38cb6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -176,6 +176,9 @@ jobs: - name: Run tests id: run-tests + env: + DCP_DIAGNOSTICS_LOG_LEVEL: debug + DCP_DIAGNOSTICS_LOG_FOLDER: testresults run: | export CI=false && ./dotnet.sh test ${{ github.workspace }}/${{ matrix.project }} \ /p:ContinuousIntegrationBuild=true \ From 279f9df4366cf36723f1aaf3803f711f31d299e8 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Thu, 6 Feb 2025 17:51:47 -0800 Subject: [PATCH 2/2] Absolute path --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f4e90e38cb6..d8d37bdc6d1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -178,7 +178,7 @@ jobs: id: run-tests env: DCP_DIAGNOSTICS_LOG_LEVEL: debug - DCP_DIAGNOSTICS_LOG_FOLDER: testresults + DCP_DIAGNOSTICS_LOG_FOLDER: ${{ github.workspace }}/testresults run: | export CI=false && ./dotnet.sh test ${{ github.workspace }}/${{ matrix.project }} \ /p:ContinuousIntegrationBuild=true \