You've already forked postgres
mirror of
https://github.com/docker-library/postgres.git
synced 2025-07-28 10:42:06 +03:00
Add JIT support for Alpine on 11+
This commit is contained in:
@ -96,6 +96,10 @@ for version in "${versions[@]}"; do
|
||||
if [ "$majorVersion" -gt 11 ]; then
|
||||
sed -i '/backwards compat/d' "$version/$variant/Dockerfile"
|
||||
fi
|
||||
if [ "$majorVersion" -lt 11 ]; then
|
||||
# JIT / LLVM is only supported in PostgreSQL 11+ (https://github.com/docker-library/postgres/issues/475)
|
||||
sed -i '/llvm/d' "$version/$variant/Dockerfile"
|
||||
fi
|
||||
|
||||
travisEnv="\n - VERSION=$version VARIANT=$variant$travisEnv"
|
||||
done
|
||||
|
Reference in New Issue
Block a user