Add pgcron for home-metrics
All checks were successful
/ build-general (bookworm, 1.4.1, v0.8.0, v0.8.0, 16, 3.5.2, 2.19.3) (push) Successful in 3m48s
/ build-general (bookworm, 1.4.1, v0.8.0, v0.8.0, 17, 3.5.2, 2.19.3) (push) Successful in 3m50s
/ build-base (bookworm, 16) (push) Successful in 3m4s
/ build-general (bookworm, 1.4.1, v0.8.0, v0.8.0, 15, 3.5.2, 2.19.3) (push) Successful in 3m51s
/ build-base (bookworm, 15) (push) Successful in 3m0s
/ build-base (bookworm, 17) (push) Successful in 3m7s
All checks were successful
/ build-general (bookworm, 1.4.1, v0.8.0, v0.8.0, 16, 3.5.2, 2.19.3) (push) Successful in 3m48s
/ build-general (bookworm, 1.4.1, v0.8.0, v0.8.0, 17, 3.5.2, 2.19.3) (push) Successful in 3m50s
/ build-base (bookworm, 16) (push) Successful in 3m4s
/ build-general (bookworm, 1.4.1, v0.8.0, v0.8.0, 15, 3.5.2, 2.19.3) (push) Successful in 3m51s
/ build-base (bookworm, 15) (push) Successful in 3m0s
/ build-base (bookworm, 17) (push) Successful in 3m7s
This commit is contained in:
parent
2777bca590
commit
569d0dfbbe
2 changed files with 13 additions and 0 deletions
|
@ -8,6 +8,8 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
PG_MAJOR_VERSION:
|
PG_MAJOR_VERSION:
|
||||||
- 17
|
- 17
|
||||||
|
- 16
|
||||||
|
- 15
|
||||||
DEB_RELEASE:
|
DEB_RELEASE:
|
||||||
- bookworm
|
- bookworm
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
|
@ -57,6 +59,8 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
PG_MAJOR_VERSION:
|
PG_MAJOR_VERSION:
|
||||||
- 17
|
- 17
|
||||||
|
- 16
|
||||||
|
- 15
|
||||||
DEB_RELEASE:
|
DEB_RELEASE:
|
||||||
- bookworm
|
- bookworm
|
||||||
POSTGIS_VERSiON:
|
POSTGIS_VERSiON:
|
||||||
|
@ -67,6 +71,8 @@ jobs:
|
||||||
- 1.4.1
|
- 1.4.1
|
||||||
PGVECTOR_VERSION:
|
PGVECTOR_VERSION:
|
||||||
- v0.8.0
|
- v0.8.0
|
||||||
|
PG_CRON_VERSION:
|
||||||
|
- v0.8.0
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
steps:
|
steps:
|
||||||
- name: Setup metadata
|
- name: Setup metadata
|
||||||
|
@ -113,4 +119,5 @@ jobs:
|
||||||
TO<ESCALEDB_VERSION=${{ matrix.TO<ESCALEDB_VERSION }}
|
TO<ESCALEDB_VERSION=${{ matrix.TO<ESCALEDB_VERSION }}
|
||||||
HYPOPG_VERSION=${{ matrix.HYPOPG_VERSION }}
|
HYPOPG_VERSION=${{ matrix.HYPOPG_VERSION }}
|
||||||
PGVECTOR_VERSION=${{ matrix.PGVECTOR_VERSION }}
|
PGVECTOR_VERSION=${{ matrix.PGVECTOR_VERSION }}
|
||||||
|
PG_CRON_VERSION=${{ matrix.PG_CRON_VERSION }}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ ARG POSTGIS_VERSION=3.5.2
|
||||||
ARG PGVECTOR_VERSION=v0.8.0
|
ARG PGVECTOR_VERSION=v0.8.0
|
||||||
ARG TIMESCALEDB_VERSION=2.19.3
|
ARG TIMESCALEDB_VERSION=2.19.3
|
||||||
ARG HYPOPG_VERSION=1.4.1
|
ARG HYPOPG_VERSION=1.4.1
|
||||||
|
ARG PG_CRON_VERSION=v1.6.5
|
||||||
|
|
||||||
RUN apt update && apt install -y build-essential flex bison git yacc cmake \
|
RUN apt update && apt install -y build-essential flex bison git yacc cmake \
|
||||||
docbook-xsl-ns \
|
docbook-xsl-ns \
|
||||||
|
@ -49,6 +50,11 @@ RUN git clone https://github.com/pgvector/pgvector --depth=1 --recursive -b ${PG
|
||||||
WORKDIR /build/pgvector
|
WORKDIR /build/pgvector
|
||||||
RUN make -j && make install
|
RUN make -j && make install
|
||||||
|
|
||||||
|
WORKDIR /build
|
||||||
|
RUN git clone https://github.com/citusdata/pg_cron --depth=1 --recursive -b ${PG_CRON_VERSION} /build/pgcron
|
||||||
|
WORKDIR /build/pgcron
|
||||||
|
RUN make -j && make install
|
||||||
|
|
||||||
FROM gitea.simcop2387.info/simcop2387/postgresql-container-base:${BASE_IMAGE_TAG} AS final
|
FROM gitea.simcop2387.info/simcop2387/postgresql-container-base:${BASE_IMAGE_TAG} AS final
|
||||||
RUN apt update && apt install -y \
|
RUN apt update && apt install -y \
|
||||||
docbook-xsl-ns \
|
docbook-xsl-ns \
|
||||||
|
|
Loading…
Add table
Reference in a new issue