Correct dependencies for RUM on alpine and remove installcheck

This commit is contained in:
rinpatch 2019-06-22 08:36:36 +03:00
parent 50e3cf9d5e
commit 177faf15c2
1 changed files with 1 additions and 2 deletions

View File

@ -49,12 +49,11 @@ apt install postgresql-11-rum
``` ```
Alpine: Alpine:
```sh ```sh
apk add gcc make apk add gcc make git postgresql-dev musl-dev
git clone https://github.com/postgrespro/rum /tmp/rum git clone https://github.com/postgrespro/rum /tmp/rum
cd /tmp/rum cd /tmp/rum
make USE_PGXS=1 make USE_PGXS=1
make USE_PGXS=1 install make USE_PGXS=1 install
make USE_PGXS=1 installcheck
cd cd
rm -r /tmp/rum rm -r /tmp/rum
``` ```