File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,16 @@ jobs:
20
20
git clone https://github.com/postgres/postgres.git pg
21
21
cd pg
22
22
git checkout REL_14_STABLE
23
- ./configure --prefix=`pwd`/tmp_install
24
-
23
+ ./configure --prefix=`pwd`/tmp_install CFLAGS="-O3"
25
24
git clone https://github.com/postgrespro/aqo.git contrib/aqo
26
25
git -C contrib/aqo checkout $GITHUB_REF
27
26
patch -p1 --no-backup-if-mismatch < contrib/aqo/aqo_pg14.patch
28
27
make -j4 > /dev/null && make -j4 -C contrib > /dev/null
29
28
env CLIENTS=50 THREADS=50 make -C contrib/aqo check
29
+
30
+ echo "Use AQO with debug code included"
31
+ git clean -fdx
32
+ git -C contrib/aqo clean -fdx
33
+ ./configure --prefix=`pwd`/tmp_install CFLAGS="-DAQO_DEBUG_PRINT -O0"
34
+ make -j4 > /dev/null && make -j4 -C contrib > /dev/null
35
+ env CLIENTS=50 THREADS=50 make -C contrib/aqo check
You can’t perform that action at this time.
0 commit comments