Skip to content

Commit e7cbf85

Browse files
authored
Merge branch 'antalya-25.6.5' into feature/antalya-25.6.5/fix_remote_calls
2 parents a2b9774 + af5b44d commit e7cbf85

File tree

74 files changed

+2489
-1224
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+2489
-1224
lines changed

.github/actions/create_workflow_report/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ runs:
2121
2222
- name: Create and upload workflow report
2323
env:
24+
PR_NUMBER: ${{ github.event.pull_request.number || 0 }}
2425
ACTIONS_RUN_URL: ${{ github.event.repository.html_url }}/actions/runs/${{ github.run_id }}
2526
COMMIT_SHA: ${{ steps.set_version.outputs.commit_sha || github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
2627
FINAL: ${{ inputs.final }}
@@ -29,7 +30,7 @@ runs:
2930
pip install clickhouse-driver==0.2.8 numpy==1.26.4 pandas==2.0.3 jinja2==3.1.5
3031
3132
CMD="python3 .github/actions/create_workflow_report/create_workflow_report.py"
32-
ARGS="--actions-run-url $ACTIONS_RUN_URL --commit-sha $COMMIT_SHA --known-fails tests/broken_tests.json --cves"
33+
ARGS="--actions-run-url $ACTIONS_RUN_URL --known-fails tests/broken_tests.json --cves --pr-number $PR_NUMBER"
3334
3435
set +e -x
3536
if [[ "$FINAL" == "false" ]]; then
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
# This script is for generating preview reports when invoked as a post-hook from a praktika job
33
pip install clickhouse-driver==0.2.8 numpy==1.26.4 pandas==2.0.3 jinja2==3.1.5
4-
ARGS="--mark-preview --known-fails tests/broken_tests.json --cves --actions-run-url $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID"
4+
ARGS="--mark-preview --known-fails tests/broken_tests.json --cves --actions-run-url $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID --pr-number $PR_NUMBER"
55
CMD="python3 .github/actions/create_workflow_report/create_workflow_report.py"
66
$CMD $ARGS
77

.github/workflows/backport_branches.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,7 +1512,7 @@ jobs:
15121512
secrets: inherit
15131513
with:
15141514
runner_type: altinity-on-demand, altinity-regression-tester
1515-
commit: c5f44e1c6fdc201a22f3f073b2311de10d2695b0
1515+
commit: aa4204a74b901a0f2ea7c9f1d631d98221554fb1
15161516
arch: release
15171517
build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
15181518
timeout_minutes: 300
@@ -1524,7 +1524,7 @@ jobs:
15241524
secrets: inherit
15251525
with:
15261526
runner_type: altinity-on-demand, altinity-regression-tester-aarch64
1527-
commit: c5f44e1c6fdc201a22f3f073b2311de10d2695b0
1527+
commit: aa4204a74b901a0f2ea7c9f1d631d98221554fb1
15281528
arch: aarch64
15291529
build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
15301530
timeout_minutes: 300

0 commit comments

Comments
 (0)