From 51fa7a2208c37177c78ef2f96ba858d6bbe105a5 Mon Sep 17 00:00:00 2001 From: SaitTalhaNisanci Date: Wed, 25 Aug 2021 17:18:03 +0300 Subject: [PATCH] Store test results as artifact on failure (#5207) There are some libpq changes on postgres side that gives some extra outputs on the pg13.4 and pg12.8. It is possible that we won't get these outputs in our local and in those cases it is useful to download those outputs from the CI. In order to do that, we store the test results as an artifact in CI. You can go to artifacts tab in CI to download them. --- .circleci/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3fe45e47a..098196b84 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -312,6 +312,10 @@ jobs: name: 'Save regressions' path: src/test/regress/regression.diffs when: on_fail + - store_artifacts: + name: 'Save results' + path: src/test/regress/results/ + when: on_fail - store_artifacts: name: 'Save core dumps' path: /tmp/core_dumps