Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions docker/ci/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,10 @@ EOF
yum -q -y install \
postgresql$pg-devel \
postgresql$pg-server \
timescaledb-2-postgresql-$pg
# We install as user postgres, so that needs write access to these.
chown $BUILDER_USERNAME $PG_BASE$pg/lib $PG_BASE$pg/share/extension
done
for pg in $TSDB_PG_VERSIONS; do
yum -q -y install \
timescaledb-2-postgresql-$pg
done

gem install fpm -v $FPM_VERSION -N
;;
Expand Down Expand Up @@ -195,13 +192,10 @@ EOF
apt-get -qq install \
postgresql-$pg \
postgresql-server-dev-$pg
# We install as user postgres, so that needs write access to these.
chown $BUILDER_USERNAME $PG_BASE$pg/lib /usr/share/postgresql/$pg/extension
done

for pg in $TSDB_PG_VERSIONS; do
# timescaledb packages Recommend toolkit, which we don't want here.
apt-get -qq install --no-install-recommends timescaledb-2-postgresql-$pg
# We install as user postgres, so that needs write access to these.
chown $BUILDER_USERNAME $PG_BASE$pg/lib /usr/share/postgresql/$pg/extension
done

# Ubuntu is the only system we want an image for that sticks an extra
Expand Down