|
| 1 | +ARG RHEL_VERSION |
| 2 | +FROM rockylinux:${RHEL_VERSION} |
| 3 | + |
| 4 | +ARG RHEL_VERSION |
| 5 | +ARG PG_VERSION |
| 6 | +ARG PG_BULKLOAD_VERSION |
| 7 | + |
| 8 | +ENV PATH /usr/pgsql-${PG_VERSION}/bin:$PATH |
| 9 | +ENV PGDATA /var/lib/pgsql/${PG_VERSION}/data |
| 10 | + |
| 11 | + |
| 12 | +################################################################################ |
| 13 | +# |
| 14 | +# Prerequisite |
| 15 | +# |
| 16 | +################################################################################ |
| 17 | + |
| 18 | +# Install packages for build |
| 19 | +RUN dnf update -y |
| 20 | +RUN dnf install -y \ |
| 21 | + clang gcc git krb5-devel libselinux-devel libzstd-devel lz4-devel make \ |
| 22 | + openssl-devel pam-devel readline-devel rpmdevtools zlib-devel |
| 23 | + |
| 24 | +# Install PostgreSQL |
| 25 | +RUN if [ "${RHEL_VERSION}" = "8" ]; then \ |
| 26 | + dnf install -y --enablerepo=powertools perl-IPC-Run; \ |
| 27 | + else \ |
| 28 | + dnf install -y --enablerepo=crb perl-IPC-Run; \ |
| 29 | + fi |
| 30 | +RUN dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-${RHEL_VERSION}-x86_64/pgdg-redhat-repo-latest.noarch.rpm |
| 31 | +RUN dnf -qy module disable postgresql |
| 32 | +RUN dnf install -y \ |
| 33 | + postgresql${PG_VERSION}-server \ |
| 34 | + postgresql${PG_VERSION}-devel \ |
| 35 | + postgresql${PG_VERSION}-llvmjit |
| 36 | + |
| 37 | + |
| 38 | +################################################################################ |
| 39 | +# |
| 40 | +# Build RPMs |
| 41 | +# |
| 42 | +################################################################################ |
| 43 | + |
| 44 | +# Build by postgres user |
| 45 | +USER postgres |
| 46 | +WORKDIR /var/lib/pgsql/ |
| 47 | + |
| 48 | +# Deploy the files required for the build |
| 49 | +RUN rpmdev-setuptree |
| 50 | +RUN git clone https://github.com/ossc-db/pg_bulkload.git |
| 51 | +RUN cp -a pg_bulkload/SPECS/pg_bulkload-pg${PG_VERSION}.spec rpmbuild/SPECS |
| 52 | +RUN cd pg_bulkload && \ |
| 53 | + git archive VERSION${PG_BULKLOAD_VERSION//./_} \ |
| 54 | + --format=tar.gz \ |
| 55 | + --prefix=pg_bulkload-${PG_BULKLOAD_VERSION}/ \ |
| 56 | + --output=../rpmbuild/SOURCES/pg_bulkload-${PG_BULKLOAD_VERSION}.tar.gz |
| 57 | + |
| 58 | +# Build RPMs |
| 59 | +RUN rpmbuild rpmbuild/SPECS/pg_bulkload-pg${PG_VERSION}.spec \ |
| 60 | + -bb --define="dist .pg${PG_VERSION}.rhel${RHEL_VERSION}" |
| 61 | + |
| 62 | + |
| 63 | +################################################################################ |
| 64 | +# |
| 65 | +# Run regression tests |
| 66 | +# |
| 67 | +################################################################################ |
| 68 | + |
| 69 | +USER root |
| 70 | +RUN rpm -ivh /var/lib/pgsql/rpmbuild/RPMS/x86_64/* |
| 71 | + |
| 72 | +USER postgres |
| 73 | +RUN initdb --no-locale -E UTF8 && \ |
| 74 | + pg_ctl -w start && \ |
| 75 | + make -C pg_bulkload installcheck |
0 commit comments