From 449b6d24975a6e79d282aa167048de239ad75b4c Mon Sep 17 00:00:00 2001 From: Igor Malinovskiy Date: Mon, 13 Jul 2026 15:18:33 +0200 Subject: [PATCH] Upload Redis logs in CI --- .github/actions/run-tests/action.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/actions/run-tests/action.yml b/.github/actions/run-tests/action.yml index cc5dd4f4..c2ac2ee2 100644 --- a/.github/actions/run-tests/action.yml +++ b/.github/actions/run-tests/action.yml @@ -140,6 +140,16 @@ runs: fi dotnet test -f ${CLR_VERSION} --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover -p:BuildInParallel=false tests/Test.proj --logger GitHubActions echo "::endgroup::" + - name: Upload Redis logs + if: always() + uses: actions/upload-artifact@v4 + with: + name: redis-logs-${{ inputs.redis-version || inputs.client-libs-test-image-tag }}-dotnet${{ inputs.dotnet-version }} + path: | + tests/dockers/cluster/node-*/redis.log + tests/dockers/cluster/node-*/nodes.conf + tests/dockers/standalone/node-*/redis.log + if-no-files-found: warn - name: Codecov if: inputs.upload-coverage != 'false' uses: codecov/codecov-action@v6