diff --git a/ansible/tasks/setup-postgres.yml b/ansible/tasks/setup-postgres.yml index 45368659c..18ec8d946 100644 --- a/ansible/tasks/setup-postgres.yml +++ b/ansible/tasks/setup-postgres.yml @@ -63,7 +63,7 @@ - name: Postgres - configure shell: - cmd: CFLAGS='{{ cflags }}' LLVM_CONFIG=/usr/bin/llvm-config-11 CLANG=/usr/bin/clang-11 ./configure --with-llvm --with-openssl --with-systemd --with-uuid=e2fs --exec-prefix=/usr/lib/postgresql --datarootdir=/var/lib/postgresql + cmd: CFLAGS='{{ cflags }} -ggdb -O0 -g -fno-omit-frame-pointer' LLVM_CONFIG=/usr/bin/llvm-config-11 CLANG=/usr/bin/clang-11 ./configure --enable-cassert --enable-debug --with-llvm --with-openssl --with-systemd --with-uuid=e2fs --exec-prefix=/usr/lib/postgresql --datarootdir=/var/lib/postgresql chdir: /tmp/postgresql-{{ postgresql_release }} become: yes diff --git a/common.vars.json b/common.vars.json index 0022cb358..340e4ce3d 100644 --- a/common.vars.json +++ b/common.vars.json @@ -1,3 +1,3 @@ { - "postgres-version": "14.1.0.14" + "postgres-version": "14.1.0.15-rc0" }