diff --git a/circleci/images/PG_VERSIONS b/circleci/images/PG_VERSIONS index 01757ad..0f9a69f 100644 --- a/circleci/images/PG_VERSIONS +++ b/circleci/images/PG_VERSIONS @@ -1,4 +1,4 @@ -PG14=14.14 -PG15=15.9 -PG16=16.5 -PG17=17.1 +PG14=14.15 +PG15=15.10 +PG16=16.6 +PG17=17.2 diff --git a/circleci/images/exttester/Dockerfile b/circleci/images/exttester/Dockerfile index 02bd74c..d706477 100644 --- a/circleci/images/exttester/Dockerfile +++ b/circleci/images/exttester/Dockerfile @@ -177,13 +177,29 @@ apt-get install -y --no-install-recommends --allow-downgrades \ rm -rf /var/lib/apt/lists/* EOF +# debug +RUN echo "DEBUG-2" +RUN ls -al /usr/lib/x86_64-linux-gnu/libpq.so* + # add postgress to the path ENV PATH=/usr/lib/postgresql/$PG_MAJOR/bin/:$PATH # setup /var/run/postgresql for use with circleci RUN mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql +# debug +RUN echo "DEBUG-3" +RUN ls -al /usr/lib/x86_64-linux-gnu/libpq.so* + # copy the collected files from the collection container at once into the final container COPY --from=dev-tools-collection /collect/ / +# debug +RUN echo "DEBUG-4" +RUN ls -al /usr/lib/x86_64-linux-gnu/libpq.so* + WORKDIR /home/circleci + +# debug +RUN echo "DEBUG-5" +RUN ls -al /usr/lib/x86_64-linux-gnu/libpq.so*