Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
- [ ] <!---ci_regression_clickhouse_keeper--> ClickHouse Keeper (1h)
- [x] <!---ci_regression_iceberg--> Iceberg (2h)
- [ ] <!---ci_regression_ldap--> LDAP (1h)
- [x] <!---ci_regression_oauth--> OAuth (5m)
- [x] <!---ci_regression_parquet--> Parquet (1.5h)
- [ ] <!---ci_regression_rbac--> RBAC (1.5h)
- [ ] <!---ci_regression_ssl_server--> SSL Server (1h)
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,26 @@ jobs:
job_name: ldap_${{ matrix.SUITE }}
secrets: inherit

OAuth:
if: |
fromJson(inputs.workflow_config).JOB_KV_DATA.ci_regression_jobs[0] == null ||
contains(fromJson(inputs.workflow_config).JOB_KV_DATA.ci_regression_jobs, 'oauth')
uses: ./.github/workflows/regression-reusable-suite.yml
with:
ref: ${{ inputs.commit }}
workflow_config: ${{ inputs.workflow_config }}
suite_name: oauth
suite_executable: regression.py
output_format: new-fails
flags: --with-analyzer --identity-provider keycloak
timeout_minutes: ${{ inputs.timeout_minutes }}
runner_arch: ${{ inputs.arch }}
runner_type: ${{ inputs.runner_type }}
build_sha: ${{ inputs.build_sha }}
set_commit_status: true
job_name: oauth
secrets: inherit

Parquet:
if: |
fromJson(inputs.workflow_config).JOB_KV_DATA.ci_regression_jobs[0] == null ||
Expand Down
2 changes: 1 addition & 1 deletion ci/praktika/native_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ def check_affected_jobs():
if "aarch64" not in workflow_config.custom_data.get(
"ci_exclude_tags", []
):
all_required_artifacts.update(['CH_ARM_BINARY'])
all_required_artifacts.update(['CH_ARM_BIN'])
print(f"Including artifacts for custom jobs [{all_required_artifacts}]")

for job in workflow.jobs:
Expand Down
Loading