Skip to content

Commit 9789a90

Browse files
authored
Merge pull request #1556 from Altinity/enable_pr_regression_26.1
Antalya 26.1 - enable antalya-related regression suites by default
2 parents 9b978b9 + e23505f commit 9789a90

2 files changed

Lines changed: 28 additions & 6 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
- [x] <!---ci_exclude_ubsan--> All with UBSAN
3232
- [x] <!---ci_exclude_coverage--> All with Coverage
3333
- [ ] <!---ci_exclude_aarch64|arm--> All with Aarch64
34-
- [x] <!---ci_exclude_regression--> All Regression
34+
- [ ] <!---ci_exclude_regression--> All Regression
3535
- [ ] <!---no_ci_cache--> Disable CI Cache
3636

3737
#### Regression jobs to run:
@@ -40,10 +40,12 @@
4040
- [ ] <!---ci_regression_alter--> Alter (1.5h)
4141
- [ ] <!---ci_regression_benchmark--> Benchmark (30m)
4242
- [ ] <!---ci_regression_clickhouse_keeper--> ClickHouse Keeper (1h)
43-
- [ ] <!---ci_regression_iceberg--> Iceberg (2h)
43+
- [x] <!---ci_regression_iceberg--> Iceberg (2h)
4444
- [ ] <!---ci_regression_ldap--> LDAP (1h)
45-
- [ ] <!---ci_regression_parquet--> Parquet (1.5h)
45+
- [x] <!---ci_regression_parquet--> Parquet (1.5h)
4646
- [ ] <!---ci_regression_rbac--> RBAC (1.5h)
4747
- [ ] <!---ci_regression_ssl_server--> SSL Server (1h)
4848
- [ ] <!---ci_regression_s3--> S3 (2h)
49-
- [ ] <!---ci_regression_tiered_storage--> Tiered Storage (2h)
49+
- [x] <!---ci_regression_s3_export--> S3 Export (2h)
50+
- [x] <!---ci_regression_swarms--> Swarms (30m)
51+
- [ ] <!---ci_regression_tiered_storage--> Tiered Storage (2h)

.github/workflows/regression.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
strategy:
127127
fail-fast: false
128128
matrix:
129-
SUITE: [aes_encryption, atomic_insert, attach, base_58, clickhouse_keeper_failover,data_types, datetime64_extended_range, disk_level_encryption, dns, engines, example, extended_precision_data_types, functions, jwt_authentication, kafka, kerberos, key_value, lightweight_delete, memory, part_moves_between_shards, selects, session_timezone, settings, swarms, version, window_functions]
129+
SUITE: [aes_encryption, atomic_insert, attach, base_58, clickhouse_keeper_failover,data_types, datetime64_extended_range, disk_level_encryption, dns, engines, example, extended_precision_data_types, functions, jwt_authentication, kafka, kerberos, key_value, lightweight_delete, memory, part_moves_between_shards, selects, session_timezone, settings, version, window_functions]
130130
uses: ./.github/workflows/regression-reusable-suite.yml
131131
with:
132132
ref: ${{ inputs.commit }}
@@ -435,7 +435,7 @@ jobs:
435435
S3Export:
436436
if: |
437437
fromJson(inputs.workflow_config).JOB_KV_DATA.ci_regression_jobs[0] == null ||
438-
contains(fromJson(inputs.workflow_config).JOB_KV_DATA.ci_regression_jobs, 's3')
438+
contains(fromJson(inputs.workflow_config).JOB_KV_DATA.ci_regression_jobs, 's3_export')
439439
strategy:
440440
fail-fast: false
441441
matrix:
@@ -460,6 +460,26 @@ jobs:
460460
extra_args: --only ":/try*" "minio/export tests/export ${{ matrix.PART }}/*"
461461
secrets: inherit
462462

463+
Swarms:
464+
if: |
465+
fromJson(inputs.workflow_config).JOB_KV_DATA.ci_regression_jobs[0] == null ||
466+
contains(fromJson(inputs.workflow_config).JOB_KV_DATA.ci_regression_jobs, 'swarms')
467+
uses: ./.github/workflows/regression-reusable-suite.yml
468+
with:
469+
ref: ${{ inputs.commit }}
470+
workflow_config: ${{ inputs.workflow_config }}
471+
suite_name: swarms
472+
suite_executable: regression.py
473+
output_format: new-fails
474+
flags: --with-analyzer
475+
timeout_minutes: ${{ inputs.timeout_minutes }}
476+
runner_arch: ${{ inputs.arch }}
477+
runner_type: ${{ inputs.runner_type }}
478+
build_sha: ${{ inputs.build_sha }}
479+
set_commit_status: true
480+
job_name: swarms
481+
secrets: inherit
482+
463483
TieredStorage:
464484
if: |
465485
fromJson(inputs.workflow_config).JOB_KV_DATA.ci_regression_jobs[0] == null ||

0 commit comments

Comments
 (0)