Skip to content

Commit 02b2517

Browse files
authored
Add scripts for building RPMs and creating release draft (#164)
1 parent c4691a1 commit 02b2517

File tree

2 files changed

+111
-0
lines changed

2 files changed

+111
-0
lines changed

.github/workflows/Dockerfile

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
ARG RHEL_VERSION
2+
FROM rockylinux:${RHEL_VERSION}
3+
4+
ARG RHEL_VERSION
5+
ARG PG_VERSION
6+
ARG PG_BULKLOAD_VERSION
7+
8+
ENV PATH /usr/pgsql-${PG_VERSION}/bin:$PATH
9+
ENV PGDATA /var/lib/pgsql/${PG_VERSION}/data
10+
11+
12+
################################################################################
13+
#
14+
# Prerequisite
15+
#
16+
################################################################################
17+
18+
# Install packages for build
19+
RUN dnf update -y
20+
RUN dnf install -y \
21+
clang gcc git krb5-devel libselinux-devel libzstd-devel lz4-devel make \
22+
openssl-devel pam-devel readline-devel rpmdevtools zlib-devel
23+
24+
# Install PostgreSQL
25+
RUN if [ "${RHEL_VERSION}" = "8" ]; then \
26+
dnf install -y --enablerepo=powertools perl-IPC-Run; \
27+
else \
28+
dnf install -y --enablerepo=crb perl-IPC-Run; \
29+
fi
30+
RUN dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-${RHEL_VERSION}-x86_64/pgdg-redhat-repo-latest.noarch.rpm
31+
RUN dnf -qy module disable postgresql
32+
RUN dnf install -y \
33+
postgresql${PG_VERSION}-server \
34+
postgresql${PG_VERSION}-devel \
35+
postgresql${PG_VERSION}-llvmjit
36+
37+
38+
################################################################################
39+
#
40+
# Build RPMs
41+
#
42+
################################################################################
43+
44+
# Build by postgres user
45+
USER postgres
46+
WORKDIR /var/lib/pgsql/
47+
48+
# Deploy the files required for the build
49+
RUN rpmdev-setuptree
50+
RUN git clone https://github.com/ossc-db/pg_bulkload.git
51+
RUN cp -a pg_bulkload/SPECS/pg_bulkload-pg${PG_VERSION}.spec rpmbuild/SPECS
52+
RUN cd pg_bulkload && \
53+
git archive VERSION${PG_BULKLOAD_VERSION//./_} \
54+
--format=tar.gz \
55+
--prefix=pg_bulkload-${PG_BULKLOAD_VERSION}/ \
56+
--output=../rpmbuild/SOURCES/pg_bulkload-${PG_BULKLOAD_VERSION}.tar.gz
57+
58+
# Build RPMs
59+
RUN rpmbuild rpmbuild/SPECS/pg_bulkload-pg${PG_VERSION}.spec \
60+
-bb --define="dist .pg${PG_VERSION}.rhel${RHEL_VERSION}"
61+
62+
63+
################################################################################
64+
#
65+
# Run regression tests
66+
#
67+
################################################################################
68+
69+
USER root
70+
RUN rpm -ivh /var/lib/pgsql/rpmbuild/RPMS/x86_64/*
71+
72+
USER postgres
73+
RUN initdb --no-locale -E UTF8 && \
74+
pg_ctl -w start && \
75+
make -C pg_bulkload installcheck

.github/workflows/release.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Build RPMs and upload its to release draft
2+
3+
on:
4+
push:
5+
tags:
6+
- 'VERSION*'
7+
8+
jobs:
9+
build_rpms:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
strategy:
14+
matrix:
15+
RHEL_VERSION: ["8", "9"]
16+
PG_VERSION: ["13", "14", "15", "16", "17"]
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v4
20+
21+
- name: Build PostgreSQL ${{ matrix.PG_VERSION }} RPMs for RHEL ${{ matrix.RHEL_VERSION }}
22+
run: |
23+
export PG_BULKLOAD_VERSION=$(echo "${GITHUB_REF_NAME#VERSION}" | sed 's/_/./g')
24+
docker build .github/workflows/ -t pg_bulkload \
25+
--build-arg RHEL_VERSION=${{ matrix.RHEL_VERSION }} \
26+
--build-arg PG_VERSION=${{ matrix.PG_VERSION }} \
27+
--build-arg PG_BULKLOAD_VERSION=${PG_BULKLOAD_VERSION}
28+
container_id=$(docker create pg_bulkload)
29+
docker cp $container_id:/var/lib/pgsql/rpmbuild/RPMS/x86_64 ./RPMS
30+
31+
- name: Create release draft and upload the RPMs
32+
uses: softprops/action-gh-release@v2
33+
with:
34+
name: Release draft
35+
draft: true
36+
files: ./RPMS/*.rpm

0 commit comments

Comments
 (0)