Skip to content
Snippets Groups Projects
Commit 18bed07c authored by Christoph Berg's avatar Christoph Berg :satellite:
Browse files

Turn jit off only on PG11+

parent 28e57b94
Branches
Tags debian/2.7.0-2
No related merge requests found
Pipeline #349574 passed
......@@ -17,8 +17,14 @@ MYSQL="mysql --defaults-file=/etc/mysql/debian.cnf -v mysql"
cat debian/tests/mysql.testschema.sql | $MYSQL
./mysql_init.sh
# tun jit off (https://github.com/EnterpriseDB/mysql_fdw/pull/227)
PG_VIRTUALENV_UNSHARE="" MYSQL_USER_NAME=edb MYSQL_PWD=edb pg_buildext -o jit=off installcheck
for v in $(pg_buildext installed-versions); do
case $v in 9*|10) ;;
*) NO_JIT="-o jit=off" ;;
esac
# tun jit off (https://github.com/EnterpriseDB/mysql_fdw/pull/227)
PG_VIRTUALENV_UNSHARE="" MYSQL_USER_NAME=edb MYSQL_PWD=edb pg_buildext ${NO_JIT:-} installcheck-$v
done
)
status=$?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment