Skip to content

Commit 90e9640

Browse files
authored
pinned version of CH to 25.9 to attempt to avoid issues (tensorzero#4339)
1 parent 1ebdb68 commit 90e9640

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/general.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -478,12 +478,13 @@ jobs:
478478
matrix:
479479
# Only include replicated: true when running in merge queue
480480
replicated: ${{ github.event_name == 'merge_group' && fromJSON('[true, false]') || fromJSON('[false]') }}
481-
clickhouse_version: ${{ github.event_name == 'merge_group' && fromJSON('[{"tag":"24.12-alpine","prefix":"24.12","allow_failure":false},{"tag":"latest","prefix":"","allow_failure":false}]') || fromJSON('[{"tag":"latest","prefix":"","allow_failure":false}]') }}
481+
# TODO: Temporarily using 25.9-alpine instead of latest
482+
clickhouse_version: ${{ github.event_name == 'merge_group' && fromJSON('[{"tag":"24.12-alpine","prefix":"24.12","allow_failure":false},{"tag":"25.9-alpine","prefix":"25.9","allow_failure":false}]') || fromJSON('[{"tag":"25.9-alpine","prefix":"25.9","allow_failure":false}]') }}
482483
exclude:
483-
# Use 25.7-alpine instead of latest for replicated tests in merge group
484+
# Use 25.7-alpine instead of 25.9-alpine for replicated tests in merge group
484485
- replicated: true
485486
clickhouse_version:
486-
{ "tag": "latest", "prefix": "", "allow_failure": false }
487+
{ "tag": "25.9-alpine", "prefix": "25.9", "allow_failure": false }
487488
# Add 25.7-alpine for replicated tests in merge group
488489
include: ${{ github.event_name == 'merge_group' && fromJSON('[{"clickhouse_version":{"tag":"25.7-alpine","prefix":"25.7","allow_failure":false},"replicated":true}]') || fromJson('[]') }}
489490

.github/workflows/ui-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
clickhouse_version: ${{ inputs.is_merge_group && fromJSON('["24.12-alpine", "latest-alpine"]') || fromJSON('["latest-alpine"]') }}
17+
# TODO: Temporarily using 25.9-alpine instead of latest-alpine
18+
clickhouse_version: ${{ inputs.is_merge_group && fromJSON('["24.12-alpine", "25.9-alpine"]') || fromJSON('["25.9-alpine"]') }}
1819

1920
steps:
2021
- name: Set DNS

0 commit comments

Comments
 (0)