Skip to content

Commit

Permalink
Test latest PG 11.10 and 12.5
Browse files Browse the repository at this point in the history
  • Loading branch information
k-rus committed Nov 18, 2020
1 parent acb8732 commit 47da879
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/alpine-32bit-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
strategy:
fail-fast: false
matrix:
pg: [ 11.9, 12.4 ]
pg: [ 11.10, 12.5 ]
build_type: [ Debug ]
include:
- pg: 11.9
ignores: append-11 chunk_adaptive-11 continuous_aggs_bgw_drop_chunks remote_txn transparent_decompression-11
- pg: 12.4
- pg: 11.10
ignores: append-11 chunk_adaptive-11 continuous_aggs_bgw_drop_chunks remote_txn transparent_decompression-11 continuous_aggs_insert continuous_aggs_multi continuous_aggs_concurrent_refresh
- pg: 12.5
ignores: append-12 chunk_adaptive-12 continuous_aggs_bgw_drop_chunks remote_txn transparent_decompression-12

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
pg: [11.9, 12.4]
pg: [11.10, 12.5]
os: [ubuntu-18.04]
env:
PG_SRC_DIR: pgbuild
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
strategy:
fail-fast: false
env:
PG_VERSION: 12.4
PG_VERSION: 12.5

steps:
- name: Checkout TimescaleDB
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
runs-on: 'ubuntu-18.04'
strategy:
matrix:
pg: [11.9,12.4]
pg: [11.10,12.5]
include:
- pg: 11.9
- pg: 11.10
pg_major: 11
- pg: 12.4
- pg: 12.5
pg_major: 12
fail-fast: false
env:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ build_script:
docker-switch-linux
docker run -d --name pgregress --env POSTGRES_HOST_AUTH_METHOD=trust postgres:12.4-alpine
docker run -d --name pgregress --env POSTGRES_HOST_AUTH_METHOD=trust postgres:12.5-alpine
docker exec -it pgregress /bin/bash -c "apk add --no-cache --virtual .build-deps coreutils dpkg-dev findutils gcc libc-dev make util-linux-dev diffutils cmake bison flex curl git openssl-dev openssl postgresql-dev~=12.4"
Expand Down
4 changes: 2 additions & 2 deletions scripts/gh_matrix_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
event_type = sys.argv[1]

PG11_EARLIEST = "11.0"
PG11_LATEST = "11.9"
PG11_LATEST = "11.10"
PG12_EARLIEST = "12.0"
PG12_LATEST = "12.4"
PG12_LATEST = "12.5"

m = {"include": [],}

Expand Down
3 changes: 0 additions & 3 deletions test/pgtest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ set(PG_IGNORE_TESTS
sanity_check
foreign_data
security_label
# timetz fails without daylight savings. Likely to be fixed in PG
# 12.5
timetz
)

# Modify the test schedule to ignore some tests
Expand Down

0 comments on commit 47da879

Please sign in to comment.