diff --git a/.github/upload_results_to_database.py b/.github/upload_results_to_database.py index 37a408ba8..00ccf3877 100755 --- a/.github/upload_results_to_database.py +++ b/.github/upload_results_to_database.py @@ -49,6 +49,7 @@ "job_url": "job.url", "report_url": "report.url", "start_time": "start_datetime", + "scheduled": "job.is_scheduled", }, "test_results": { "test_duration_ms": "message_rtime_ms", diff --git a/.github/workflows/reusable-workflow-arm.yml b/.github/workflows/reusable-workflow-arm.yml index ca0bc8b86..167f6a6cd 100644 --- a/.github/workflows/reusable-workflow-arm.yml +++ b/.github/workflows/reusable-workflow-arm.yml @@ -74,7 +74,7 @@ env: --collect-service-logs --output ${{ inputs.output_format }} --parallel ${{ vars.PARALLEL }} - --attr project="${GITHUB_REPOSITORY}" project.id="${GITHUB_REPOSITORY_ID}" user.name="${GITHUB_ACTOR}" version="${{ inputs.version }}" package="${{ inputs.package }}" repository="https://github.com/Altinity/clickhouse-regression" commit.hash="${GITHUB_SHA}" job.id="${GITHUB_RUN_ID}" job.url="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}" arch="$(uname -i)" report.url=$SUITE_REPORT_INDEX_URL + --attr project="${GITHUB_REPOSITORY}" project.id="${GITHUB_REPOSITORY_ID}" user.name="${GITHUB_ACTOR}" version="${{ inputs.version }}" package="${{ inputs.package }}" repository="https://github.com/Altinity/clickhouse-regression" commit.hash="${GITHUB_SHA}" job.id="${GITHUB_RUN_ID}" job.url="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}" arch="$(uname -i)" report.url=$SUITE_REPORT_INDEX_URL job.is_scheduled="${{ github.event_name == 'schedule' }}" --log raw.log ${{ inputs.extra_args }} artifact_paths: | ./report.html diff --git a/.github/workflows/reusable-workflow-x86.yml b/.github/workflows/reusable-workflow-x86.yml index 2b6e60ecb..3fd8fcea4 100644 --- a/.github/workflows/reusable-workflow-x86.yml +++ b/.github/workflows/reusable-workflow-x86.yml @@ -74,7 +74,7 @@ env: --collect-service-logs --output ${{ inputs.output_format }} --parallel ${{ vars.PARALLEL }} - --attr project="${GITHUB_REPOSITORY}" project.id="${GITHUB_REPOSITORY_ID}" user.name="${GITHUB_ACTOR}" version="${{ inputs.version }}" package="${{ inputs.package }}" repository="https://github.com/Altinity/clickhouse-regression" commit.hash="${GITHUB_SHA}" job.id="${GITHUB_RUN_ID}" job.url="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}" arch="$(uname -i)" report.url=$SUITE_REPORT_INDEX_URL + --attr project="${GITHUB_REPOSITORY}" project.id="${GITHUB_REPOSITORY_ID}" user.name="${GITHUB_ACTOR}" version="${{ inputs.version }}" package="${{ inputs.package }}" repository="https://github.com/Altinity/clickhouse-regression" commit.hash="${GITHUB_SHA}" job.id="${GITHUB_RUN_ID}" job.url="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}" arch="$(uname -i)" report.url=$SUITE_REPORT_INDEX_URL job.is_scheduled="${{ github.event_name == 'schedule' }}" --log raw.log ${{ inputs.extra_args }} artifact_paths: | ./report.html