We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2326153 commit 09958c9Copy full SHA for 09958c9
.ci/travis-before-install.sh
@@ -19,6 +19,12 @@ if [[ "${TRAVIS_OS_NAME}" == "linux" && "${BUILD}" == *wheels* ]]; then
19
sudo tee --append /etc/postgresql/${PGVERSION}/main/postgresql.conf
20
echo "host all all 172.17.0.0/16 trust" | \
21
sudo tee --append /etc/postgresql/${PGVERSION}/main/pg_hba.conf
22
+
23
+ if [ "${PGVERSION}" -ge "11" ]; then
24
+ # Disable JIT to avoid unpredictable timings in tests.
25
+ echo "jit = off" | \
26
+ sudo tee --append /etc/postgresql/${PGVERSION}/main/postgresql.conf
27
+ fi
28
fi
29
30
sudo service postgresql start ${PGVERSION}
0 commit comments