From ed107835cb002835c2006a004348aa18d2ac0b60 Mon Sep 17 00:00:00 2001 From: gledis69 Date: Mon, 7 Feb 2022 18:34:39 +0300 Subject: [PATCH] Updates a few details in Contributing.md * Adds installation of `mitmproxy`. I was getting this error from running regression tests: ``` Can't exec "mitmdump": No such file or directory at /home/glediszeneli/citus/src/test/regress/pg_regress_multi.pl line 215. ``` * Calls `install-all` in the setup. Without `install-all` the `mutli-extension` regression test failed. --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7777554b2..8e85fbbba 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -31,7 +31,7 @@ why we ask this as well as instructions for how to proceed, see the cd citus ./configure make - make install + make install install-all cd src/test/regress make check ``` @@ -51,7 +51,7 @@ why we ask this as well as instructions for how to proceed, see the autoconf flex git libcurl4-gnutls-dev libicu-dev \ libkrb5-dev liblz4-dev libpam0g-dev libreadline-dev \ libselinux1-dev libssl-dev libxslt1-dev libzstd-dev \ - make uuid-dev + make uuid-dev mitmproxy ``` 2. Get, build, and test the code