Skip to content

Commit

Permalink
debug-only-version-bump
Browse files Browse the repository at this point in the history
  • Loading branch information
onurctirtir committed Jan 7, 2025
1 parent 84c0cf8 commit 2b88bca
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
8 changes: 4 additions & 4 deletions circleci/images/PG_VERSIONS
Original file line number Diff line number Diff line change
@@ -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
16 changes: 16 additions & 0 deletions circleci/images/exttester/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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*

0 comments on commit 2b88bca

Please sign in to comment.