-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: build and test with PostgreSQL 16
Adding PGDLLEXPORT to symbols that need to be visible to PostgreSQL. For some reason this did not fail in previous versions of PostgreSQL. Also, the `debian/control` file is rebuilt to include PostgreSQL 16.
- Loading branch information
Showing
5 changed files
with
25 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,8 @@ sudo apt-get update | |
sudo apt-get -y install postgresql postgresql-server-dev-13 | ||
``` | ||
|
||
### Building from source | ||
|
||
After the dependencies are installed, you can download the repository | ||
from GitHub. | ||
|
||
|
@@ -44,10 +46,7 @@ git clone [email protected]:mkindahl/pg_influx.git | |
cd pg_influx | ||
``` | ||
|
||
### Building from source | ||
|
||
After the dependencies are installed, To build and install the | ||
extension: | ||
To build and install the extension: | ||
|
||
```bash | ||
make | ||
|
@@ -73,6 +72,15 @@ If you want to build unsigned packages, you can do that using | |
debmake -t -i "debuild -i -uc -us" | ||
``` | ||
|
||
### Adding PostgreSQL versions | ||
|
||
If a new version of PostgreSQL is supported, it is necessary to | ||
rebuild the `debian/control` file from the `debian/control.in` file. | ||
|
||
```bash | ||
pg_buildext updatecontrol | ||
``` | ||
|
||
## Running Regression Tests | ||
|
||
To run the regression tests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters