From 0a92b31496e56174e919ab6515ec7d0812989437 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Thu, 12 Aug 2021 18:39:23 +0300 Subject: [PATCH] If a pg_regress test fails in CI, save regression.diffs --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4262aedd3e..3e30e1d11a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -229,7 +229,7 @@ jobs: when: always command: | du -sh /tmp/test_output/* - find /tmp/test_output -type f ! -name "pg.log" ! -name "pageserver.log" ! -name "wal_acceptor.log" -delete + find /tmp/test_output -type f ! -name "pg.log" ! -name "pageserver.log" ! -name "wal_acceptor.log" ! -name "regression.diffs" -delete du -sh /tmp/test_output/* - store_artifacts: path: /tmp/test_output