ClickHouse/.github/workflows/master.yml

143 lines
5.4 KiB
YAML
Raw Normal View History

# yamllint disable rule:comments-indentation
2021-11-22 11:54:02 +00:00
name: MasterCI
env:
# Force the stdout and stderr streams to be unbuffered
PYTHONUNBUFFERED: 1
2021-11-22 11:54:02 +00:00
on: # yamllint disable-line rule:truthy
push:
branches:
- 'master'
jobs:
RunConfig:
runs-on: [self-hosted, style-checker-aarch64]
outputs:
data: ${{ steps.runconfig.outputs.CI_DATA }}
2022-01-18 21:33:53 +00:00
steps:
- name: DebugInfo
2024-04-29 10:27:40 +00:00
uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6
2022-01-18 21:33:53 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true # to ensure correct digests
fetch-depth: 0 # to get version
filter: tree:0
2024-04-11 11:58:44 +00:00
- name: Merge sync PR
2024-04-10 13:17:39 +00:00
run: |
cd "$GITHUB_WORKSPACE/tests/ci"
2024-04-11 11:58:44 +00:00
python3 sync_pr.py --merge || :
# Runs in MQ:
# - name: Python unit tests
# run: |
# cd "$GITHUB_WORKSPACE/tests/ci"
# echo "Testing the main ci directory"
# python3 -m unittest discover -s . -p 'test_*.py'
- name: PrepareRunConfig
id: runconfig
run: |
python3 "$GITHUB_WORKSPACE/tests/ci/ci.py" --configure --outfile ${{ runner.temp }}/ci_run_data.json
echo "::group::CI configuration"
python3 -m json.tool ${{ runner.temp }}/ci_run_data.json
echo "::endgroup::"
{
echo 'CI_DATA<<EOF'
cat ${{ runner.temp }}/ci_run_data.json
echo 'EOF'
} >> "$GITHUB_OUTPUT"
- name: Re-create GH statuses for skipped jobs if any
run: |
python3 "$GITHUB_WORKSPACE/tests/ci/ci.py" --infile ${{ runner.temp }}/ci_run_data.json --update-gh-statuses
2024-05-24 08:53:19 +00:00
# Runs in MQ:
# BuildDockers:
# needs: [RunConfig]
# if: ${{ !failure() && !cancelled() }}
2024-07-14 19:07:41 +00:00
# uses: ./.github/workflows/docker_test_images.yml
2024-05-24 08:53:19 +00:00
# with:
# data: ${{ needs.RunConfig.outputs.data }}
# StyleCheck:
# needs: [RunConfig, BuildDockers]
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/reusable_test.yml
# with:
# test_name: Style check
# runner_type: style-checker
# data: ${{ needs.RunConfig.outputs.data }}
# run_command: |
# python3 style_check.py --no-push
2024-05-24 08:53:19 +00:00
################################# Main stages #################################
# for main CI chain
#
Builds_1:
needs: [RunConfig]
if: ${{ !failure() && !cancelled() && contains(fromJson(needs.RunConfig.outputs.data).stages_data.stages_to_do, 'Builds_1') }}
# using callable wf (reusable_stage.yml) allows grouping all nested jobs under a tab
uses: ./.github/workflows/reusable_build_stage.yml
with:
2024-05-24 08:53:19 +00:00
stage: Builds_1
data: ${{ needs.RunConfig.outputs.data }}
2024-05-24 08:53:19 +00:00
Tests_1:
needs: [RunConfig, Builds_1]
if: ${{ !failure() && !cancelled() && contains(fromJson(needs.RunConfig.outputs.data).stages_data.stages_to_do, 'Tests_1') }}
uses: ./.github/workflows/reusable_test_stage.yml
2024-05-14 08:03:32 +00:00
with:
2024-05-24 08:53:19 +00:00
stage: Tests_1
2024-05-14 08:03:32 +00:00
data: ${{ needs.RunConfig.outputs.data }}
2024-05-24 08:53:19 +00:00
Builds_2:
needs: [RunConfig, Builds_1]
if: ${{ !failure() && !cancelled() && contains(fromJson(needs.RunConfig.outputs.data).stages_data.stages_to_do, 'Builds_2') }}
uses: ./.github/workflows/reusable_build_stage.yml
with:
2024-05-24 08:53:19 +00:00
stage: Builds_2
data: ${{ needs.RunConfig.outputs.data }}
2024-07-25 10:12:37 +00:00
Tests_2_ww:
2024-05-24 08:53:19 +00:00
needs: [RunConfig, Builds_2]
2024-07-25 10:12:37 +00:00
if: ${{ !failure() && !cancelled() && contains(fromJson(needs.RunConfig.outputs.data).stages_data.stages_to_do, 'Tests_2_ww') }}
2024-05-24 08:53:19 +00:00
uses: ./.github/workflows/reusable_test_stage.yml
with:
2024-07-25 10:12:37 +00:00
stage: Tests_2_ww
data: ${{ needs.RunConfig.outputs.data }}
2024-07-25 10:12:37 +00:00
Tests_2:
2024-06-05 07:47:11 +00:00
# Test_3 should not wait for Test_1/Test_2 and should not be blocked by them on master branch since all jobs need to run there.
2024-06-18 19:59:59 +00:00
needs: [RunConfig, Builds_1]
2024-07-25 10:12:37 +00:00
if: ${{ !failure() && !cancelled() && contains(fromJson(needs.RunConfig.outputs.data).stages_data.stages_to_do, 'Tests_2') }}
2024-05-24 08:53:19 +00:00
uses: ./.github/workflows/reusable_test_stage.yml
with:
2024-07-25 10:12:37 +00:00
stage: Tests_2
data: ${{ needs.RunConfig.outputs.data }}
2024-05-24 08:53:19 +00:00
################################# Reports #################################
2024-06-10 09:18:03 +00:00
# Reports should run even if Builds_1/2 fail - run them separately, not in Tests_1/2/3
Builds_Report:
# run report check for failed builds to indicate the CI error
if: ${{ !cancelled() && needs.RunConfig.result == 'success' && contains(fromJson(needs.RunConfig.outputs.data).jobs_data.jobs_to_do, 'Builds') }}
needs: [RunConfig, Builds_1, Builds_2]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Builds
runner_type: style-checker-aarch64
data: ${{ needs.RunConfig.outputs.data }}
2024-05-24 08:53:19 +00:00
2021-11-22 11:54:02 +00:00
FinishCheck:
if: ${{ !cancelled() }}
2024-07-25 10:12:37 +00:00
needs: [RunConfig, Builds_1, Builds_2, Builds_Report, Tests_1, Tests_2_ww, Tests_2]
2024-05-24 08:53:19 +00:00
runs-on: [self-hosted, style-checker-aarch64]
2021-11-22 11:54:02 +00:00
steps:
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
2021-11-22 11:54:02 +00:00
- name: Finish label
run: |
cd "$GITHUB_WORKSPACE/tests/ci"
python3 finish_check.py --wf-status ${{ contains(needs.*.result, 'failure') && 'failure' || 'success' }}
- name: Check Workflow results
2024-07-25 10:12:37 +00:00
if: ${{ !cancelled() }}
run: |
export WORKFLOW_RESULT_FILE="/tmp/workflow_results.json"
2024-07-24 07:32:51 +00:00
cat > "$WORKFLOW_RESULT_FILE" << 'EOF'
${{ toJson(needs) }}
EOF
python3 ./tests/ci/ci_buddy.py --check-wf-status