Skip to content

Commit 948d4e9

Browse files
authored
Merge pull request #1604 from Altinity/ci/update-hash-antalya-26.1
Antalya 26.1: CI fixes - regression hash update and test stability
2 parents d50866c + f58a1e7 commit 948d4e9

File tree

7 files changed

+24
-5
lines changed

7 files changed

+24
-5
lines changed

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5111,7 +5111,7 @@ jobs:
51115111
secrets: inherit
51125112
with:
51135113
runner_type: altinity-regression-tester
5114-
commit: c7897a6a858a9ef9c7b3c519e7291cfd3c2ec646
5114+
commit: 7b671c109330ac55f7eedabe05e6aea7530ffdd5
51155115
arch: release
51165116
build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
51175117
timeout_minutes: 210
@@ -5123,7 +5123,7 @@ jobs:
51235123
secrets: inherit
51245124
with:
51255125
runner_type: altinity-regression-tester-aarch64
5126-
commit: c7897a6a858a9ef9c7b3c519e7291cfd3c2ec646
5126+
commit: 7b671c109330ac55f7eedabe05e6aea7530ffdd5
51275127
arch: aarch64
51285128
build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
51295129
timeout_minutes: 210

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4597,7 +4597,7 @@ jobs:
45974597
secrets: inherit
45984598
with:
45994599
runner_type: altinity-regression-tester
4600-
commit: c7897a6a858a9ef9c7b3c519e7291cfd3c2ec646
4600+
commit: 7b671c109330ac55f7eedabe05e6aea7530ffdd5
46014601
arch: release
46024602
build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
46034603
timeout_minutes: 210
@@ -4609,7 +4609,7 @@ jobs:
46094609
secrets: inherit
46104610
with:
46114611
runner_type: altinity-regression-tester-aarch64
4612-
commit: c7897a6a858a9ef9c7b3c519e7291cfd3c2ec646
4612+
commit: 7b671c109330ac55f7eedabe05e6aea7530ffdd5
46134613
arch: aarch64
46144614
build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
46154615
timeout_minutes: 210

ci/praktika/yaml_additional_templates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class AltinityWorkflowTemplates:
3535
echo "Workflow Run Report: [View Report]($REPORT_LINK)" >> $GITHUB_STEP_SUMMARY
3636
"""
3737
# Additional jobs
38-
REGRESSION_HASH = "c7897a6a858a9ef9c7b3c519e7291cfd3c2ec646"
38+
REGRESSION_HASH = "7b671c109330ac55f7eedabe05e6aea7530ffdd5"
3939
ALTINITY_JOBS = {
4040
"GrypeScan": r"""
4141
GrypeScanServer:

tests/broken_tests.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,16 @@
283283
message: 'Client timed out!'
284284
check_types:
285285
- asan
286+
- name: 03572_export_merge_tree_part_limits_and_table_functions
287+
reason: 'INVESTIGATE - Unstable on tsan'
288+
message: 'timeout: 60s'
289+
check_types:
290+
- tsan
291+
- name: 00157_cache_dictionary
292+
reason: 'KNOWN: Timeout on coverage build (Altinity infra-specific)'
293+
message: 'DB::Exception: Timeout exceeded'
294+
check_types:
295+
- sanitize-coverage
286296

287297

288298
# Regex rules should be ordered from most specific to least specific.

tests/queries/0_stateless/03634_autopr_input_bytes_estimation.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ SET enable_parallel_replicas=0, automatic_parallel_replicas_mode=2, parallel_rep
88
-- Reading of aggregation states from disk will affect `ReadCompressedBytes`
99
SET max_bytes_before_external_group_by=0, max_bytes_ratio_before_external_group_by=0;
1010

11+
-- Override randomized max_threads to avoid timeout on slow builds (ASan)
12+
SET max_threads=0;
13+
1114
SELECT COUNT(*) FROM test.hits WHERE AdvEngineID <> 0 FORMAT Null SETTINGS log_comment='query_1';
1215

1316
-- Unsupported at the moment, refer to comments in `RuntimeDataflowStatisticsCacheUpdater::recordAggregationStateSizes`

tests/queries/0_stateless/03634_autopr_output_bytes_estimation.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ SET enable_parallel_replicas=0, automatic_parallel_replicas_mode=2, parallel_rep
66
-- External aggregation is not supported as of now
77
SET max_bytes_before_external_group_by=0, max_bytes_ratio_before_external_group_by=0;
88

9+
-- Override randomized max_threads to avoid timeout on slow builds (ASan)
10+
SET max_threads=0;
11+
912
SELECT COUNT(*) FROM test.hits WHERE AdvEngineID <> 0 FORMAT Null SETTINGS log_comment='query_1';
1013

1114
-- Unsupported at the moment, refer to comments in `RuntimeDataflowStatisticsCacheUpdater::recordAggregationStateSizes`

tests/queries/0_stateless/04003_cast_nullable_read_in_order_explain.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
-- Tags: no-replicated-database, no-parallel-replicas, no-random-merge-tree-settings
2+
-- EXPLAIN output may differ
3+
14
-- { echo }
25

36
SET optimize_read_in_order = 1;

0 commit comments

Comments
 (0)