Skip to content

Commit

Permalink
Skip PostgreSQL 12 by default for CICD
Browse files Browse the repository at this point in the history
TimescaleDB 2.13.0 does not support PostgreSQL 12 anymore. This
currently causes our CI to fail. To still be able to test PostgreSQL 12,
we will run it if the TimescaleDB tag is set to 2.11.2

https://docs.timescale.com/about/latest/release-notes/#timescaledb-2120-on-2023-09-27
  • Loading branch information
feikesteenbergen committed Nov 27, 2023
1 parent 91b9bf8 commit 18b7d60
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,14 @@ jobs:
os: centos
version: "7"
pgversion: 16
# TimescaleDB as of 2.12.0 no longer supports PostgreSQL 12.
# To allow us to do run CI against PostgreSQL 12, we therefore explicitly
# remove all CI's, except if we are run against the latest supported TimescaleDB
# version for PostgreSQL 12, which is 2.11.2
- pgversion: 12
include:
- pgversion: 12
inputs.tsdb-commit: '2.11.2'
env:
# TODO Why? Cargo default is to pass `-C incremental` to rustc; why don't we want that?
# https://doc.rust-lang.org/rustc/codegen-options/index.html#incremental
Expand Down

0 comments on commit 18b7d60

Please sign in to comment.