We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent3231ac9 commitf96fc0dCopy full SHA for f96fc0d
.github/workflows/c-cpp.yml
@@ -20,10 +20,16 @@ jobs:
20
git clone https://github.com/postgres/postgres.git pg
21
cd pg
22
git checkout REL_14_STABLE
23
- ./configure --prefix=`pwd`/tmp_install
24
-
+ ./configure --prefix=`pwd`/tmp_install CFLAGS="-O3"
25
git clone https://github.com/postgrespro/aqo.git contrib/aqo
26
git -C contrib/aqo checkout $GITHUB_REF
27
patch -p1 --no-backup-if-mismatch < contrib/aqo/aqo_pg14.patch
28
make -j4 > /dev/null && make -j4 -C contrib > /dev/null
29
env CLIENTS=50 THREADS=50 make -C contrib/aqo check
+
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