Skip to content

Commit faafaa4

Browse files
committed
Dont try downgrade test for pg18 packages
Since there is only 1 version for pg18 we cant do downgrade test atm.
1 parent a5ce527 commit faafaa4

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.github/workflows/apt-arm-packages.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
matrix:
2323
image: [ "debian:11-slim", "debian:12-slim", "debian:13-slim", "ubuntu:22.04", "ubuntu:24.04" ]
2424
pg: [ 15, 16, 17, 18 ]
25+
exclude:
26+
- image: "debian:11-slim"
27+
pg: 18
2528

2629
steps:
2730
- name: Setup emulation

.github/workflows/apt-packages.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ jobs:
3030
include:
3131
- license: Apache
3232
pkg_suffix: "-oss"
33+
exclude:
34+
- image: "debian:11-slim"
35+
pg: 18
36+
3337

3438
steps:
3539
- name: Add repositories
@@ -90,7 +94,7 @@ jobs:
9094
fi
9195
9296
- name: Test Downgrade
93-
if: matrix.image != 'debian:13-slim' # debian 13 only has timescaledb 2.22.0+ so we can only start testing downgrades with 2.22.1+
97+
if: matrix.pg != '18' # pg18 only has 1 version so downgrade is not possible
9498
run: |
9599
# Since this runs nightly on main we have to get the previous version
96100
# from the last released version and not current branch.

.github/workflows/rpm-packages.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
include:
3030
- license: Apache
3131
pkg_suffix: "-oss"
32+
exclude:
33+
- image: "rockylinux:8"
34+
pg: 18
3235

3336
steps:
3437
- name: Add postgres repositories
@@ -93,6 +96,7 @@ jobs:
9396
fi
9497
9598
- name: Test Downgrade
99+
if: matrix.pg != '18' # pg18 only has 1 version so downgrade is not possible
96100
run: |
97101
# Since this runs nightly on main we have to get the previous version
98102
# from the last released version and not current branch.

0 commit comments

Comments
 (0)