Skip to content

Commit

Permalink
GitHub Actions: use postgres12 with pg_bigm
Browse files Browse the repository at this point in the history
  • Loading branch information
takahashim committed Jul 22, 2024
1 parent 9d2af10 commit 5f9dfc4
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/docker/Dockerfile.postgres
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM postgres:12

RUN apt update
RUN apt install -y postgresql-server-dev-12 make gcc curl libicu-dev

RUN cd /tmp && \
curl -L -O https://github.com/pgbigm/pg_bigm/archive/refs/tags/v1.2-20240606.tar.gz && \
tar zxf v1.2-20240606.tar.gz && \
cd pg_bigm-1.2-20240606 && \
make USE_PGXS=1 && \
make USE_PGXS=1 install && \
rm -rf /tmp/pg_bigm-1.2-20240606 /tmp/v1.2-20240606.tar.gz

RUN echo shared_preload_libraries='pg_bigm' >> /var/lib/postgresql/data/postgresql.conf

ENTRYPOINT ["docker-entrypoint.sh"]
EXPOSE 5432
CMD ["postgres"]
2 changes: 1 addition & 1 deletion .github/workflows/_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
SLACK_MESSAGE_CHANNEL: '#test'
services:
db:
image: postgres:12.14
image: ghcr.io/${{ github.repository_owner }}/postgres_bigm:12-latest
ports:
- 5432:5432
env:
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/pg_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build and Push Docker Image of PostgreSQL with pg_bigm

on:
workflow_dispatch:

jobs:
build-and-push:
runs-on: ubuntu-latest
env:
IMAGE_NAME: postgres_bigm
IMAGE_TAG: 12-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
file: .github/docker/Dockerfile.postgres
push: true
tags: ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}

0 comments on commit 5f9dfc4

Please sign in to comment.