Skip to content

Commit

Permalink
Merge pull request #2431 from EnterpriseDB/release/2022-03-09
Browse files Browse the repository at this point in the history
Release: 2022-03-09
  • Loading branch information
drothery-edb authored Mar 9, 2022
2 parents 2837abc + 282359e commit fdb07f6
Show file tree
Hide file tree
Showing 25 changed files with 100 additions and 23 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/deploy-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ jobs:
run: |
curl -L https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.focal_amd64.deb > wkhtmltopdf.deb
sudo apt-get install ./wkhtmltopdf.deb
- name: Install Python dependencies
run: pip install -r requirements-ci.txt

- name: Build all pdfs
run: npm run pdf:build-all-ci
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/deploy-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ jobs:
run: |
curl -L https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.focal_amd64.deb > wkhtmltopdf.deb
sudo apt-get install ./wkhtmltopdf.deb
- name: Install Python dependencies
run: pip install -r requirements-ci.txt

- name: Build all pdfs
run: npm run pdf:build-all-ci
Expand Down
5 changes: 5 additions & 0 deletions docker/images/Dockerfile.pdf-builder
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ARG WKHTML_TO_PDF_DEB=wkhtmltox_${WKHTML_TO_PDF_VERSION}-1.focal_amd64.deb

RUN apt-get update && apt-get install --no-install-recommends -y \
python3 \
python3-pip \
wget \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
Expand All @@ -25,3 +26,7 @@ RUN wget --quiet --no-check-certificate -P /tmp https://github.com/wkhtmltopdf/p
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/*

# Install python dependencies
COPY requirements-ci.txt .
RUN pip install --no-cache-dir -r requirements-ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ This information is saved in a set of files in a user-configurable path and dire

**The following describes the installation process on a Linux system.**

**Step 1:** EDB wait states is installed with the `edb-asxx-server-edb-modules` RPM package where `xx` is the Advanced Server version number.
**Step 1:** EDB wait states is installed with the `edb-asxx-server-edb_wait_states` RPM package where `xx` is the Advanced Server version number.

**Step 2:** To launch the worker, it must be registered in the `postgresql.conf` file using the `shared_preload_libraries` parameter, for example:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ Please note: The available package list is subject to change.
| edb-as11-server-core | Includes the programs needed to create the core functionality behind the Advanced Server database. |
| edb-as11-server-devel | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
| edb-as11-server-docs | Installs the readme file. |
| edb-as11-server-edb-modules | Installs supporting modules for Advanced Server |
| edb-as11-server-edb_wait_states | Installs supporting modules for Advanced Server |
| edb-as11-server-indexadvisor | Installs Advanced Server's Index Advisor feature. The Index Advisor utility helps determine which columns you should index to improve performance in a given workload. |
| edb-as11-server-libs | Provides the essential shared libraries for any Advanced Server client program or interface. |
| edb-as11-server-llvmjit | This package contains support for Just in Time (JIT) compiling parts of EDBAS queries. |
Expand Down Expand Up @@ -1018,7 +1018,7 @@ Please note: The available package list is subject to change.
| edb-as11-server-core | Includes the programs needed to create the core functionality behind the Advanced Server database. |
| edb-as11-server-dev | The `edb-as11-server-dev` package contains the header files and libraries needed to compile C or C++ applications that directly interact with an Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
| edb-as11-server-doc | Installs the readme file. |
| edb-as11-server-edb-modules | Installs supporting modules for Advanced Server. |
| edb-as11-server-edb_wait_states | Installs supporting modules for Advanced Server. |
| edb-as11-server-indexadvisor | Installs Advanced Server's Index Advisor feature. The Index Advisor utility helps determine which columns you should index to improve performance in a given workload. |
| edb-as11-server-pldebugger | This package implements an API for debugging PL/pgSQL functions on Advanced Server. |
| edb-as11-server-plpython <br /> edb-as11-server-plpython3 <br /> | Installs the PL/Python procedural language for Advanced Server. Please note that the `edb-as11-server-plpython` package is dependent on the platform-supplied version of Python. By default, the `edb-as11-server-plpython3` package is not installed; you need to explicitly install the package using `apt`. To install `edb-as11-server-plpython3` package, you must first uninstall the `plpython` platform-supplied version of Python. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ The following components are included in the EDB Postgres Advanced Server v12 re

- Procedural Language Packs – PL/Perl 5.26, PL/Python 3.7, PL/TCL 8.6
- CloneSchema 1.10
- EDB_Wait_States 1.0 (formerly known as Edb-Modules)
- Parallel Clone 1.5
- pgAgent 4.15
- Slony 2.2.8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ This information is saved in a set of files in a user-configurable path and dire

**The following describes the installation process on a Linux system.**

**Step 1:** EDB wait states is installed with the `edb-asxx-server-edb-modules` RPM package where `xx` is the Advanced Server version number.
**Step 1:** EDB wait states is installed with the `edb-asxx-server-edb_wait_states` RPM package where `xx` is the Advanced Server version number.

**Step 2:** To launch the worker, it must be registered in the `postgresql.conf` file using the `shared_preload_libraries` parameter, for example:

Expand Down
Loading

0 comments on commit fdb07f6

Please sign in to comment.