Fix compatibility with pg18 #81
Merged
Travis CI / Travis CI - Pull Request
succeeded
Dec 11, 2024 in 4m 28s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #81 postgres 18 support.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has six jobs, running in parallel.
Job | ENV | OS | State |
---|---|---|---|
PG_MAJOR=17 BETA=1 | Linux | passed | |
PG_MAJOR=16 | Linux | passed | |
PG_MAJOR=15 | Linux | passed | |
PG_MAJOR=14 | Linux | passed | |
PG_MAJOR=13 | Linux | passed | |
PG_MAJOR=12 | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | C |
Operating System | Linux (Jammy) |
Build Configuration
{
"language": "c",
"os": [
"linux"
],
"dist": "jammy",
"env": [
"jobs={:PG_MAJOR=>\"17\", :BETA=>\"1\"}={:PG_MAJOR=>\"16\"}={:PG_MAJOR=>\"15\"}={:PG_MAJOR=>\"14\"}={:PG_MAJOR=>\"13\"}={:PG_MAJOR=>\"12\"}"
],
"before_script": [
"curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -",
"echo \"deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main\" | sudo tee -a /etc/apt/sources.list",
"if [ -n \"${BETA}\" ]; then echo \"deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main ${PG_MAJOR}\" | sudo tee -a /etc/apt/sources.list; fi",
"sudo apt-get update",
"sudo systemctl stop postgresql",
"sudo apt-get install -y --no-install-recommends postgresql-client-${PG_MAJOR} postgresql-${PG_MAJOR} postgresql-server-dev-${PG_MAJOR}",
"sudo systemctl stop postgresql"
],
"script": [
"./run-tests.sh"
],
"after_script": [
"cat regression.diffs",
"cat logfile"
]
}
Loading