ClickHouse/.github/workflows/main.yml

131 lines
4.0 KiB
YAML
Raw Normal View History

2021-10-21 11:09:15 +00:00
name: CIGithubActions
2021-09-15 11:53:24 +00:00
on: # yamllint disable-line rule:truthy
2021-09-10 09:12:11 +00:00
pull_request:
2021-09-15 13:31:57 +00:00
types:
- labeled
- unlabeled
- synchronize
- reopened
- opened
2021-09-10 09:12:11 +00:00
branches:
- master
jobs:
2021-09-15 12:10:19 +00:00
CheckLabels:
2021-10-21 11:09:15 +00:00
runs-on: [self-hosted, style-checker]
2021-09-15 12:10:19 +00:00
steps:
2021-09-15 13:02:09 +00:00
- name: Check out repository code
uses: actions/checkout@v2
2021-09-15 12:10:19 +00:00
- name: Labels check
2021-10-25 14:36:21 +00:00
run: |
cd $GITHUB_WORKSPACE/tests/ci
python3 run_check.py
2021-09-15 12:10:19 +00:00
DockerHubPush:
needs: CheckLabels
2021-10-21 11:09:15 +00:00
runs-on: [self-hosted, style-checker]
2021-09-15 12:10:19 +00:00
steps:
2021-09-16 10:11:35 +00:00
- name: Check out repository code
uses: actions/checkout@v2
2021-09-15 12:10:19 +00:00
- name: Images check
2021-10-25 14:36:21 +00:00
run: |
cd $GITHUB_WORKSPACE/tests/ci
python3 docker_images_check.py
2021-09-15 18:26:48 +00:00
- name: Upload images files to artifacts
uses: actions/upload-artifact@v2
with:
name: changed_images
2021-09-15 18:48:06 +00:00
path: ${{ runner.temp }}/docker_images_check/changed_images.json
2021-09-29 07:47:15 +00:00
StyleCheck:
2021-09-15 12:10:19 +00:00
needs: DockerHubPush
2021-10-21 11:09:15 +00:00
runs-on: [self-hosted, style-checker]
2021-09-10 09:12:11 +00:00
steps:
2021-09-15 18:54:20 +00:00
- name: Download changed images
2021-09-15 18:26:48 +00:00
uses: actions/download-artifact@v2
with:
name: changed_images
2021-09-15 18:52:37 +00:00
path: ${{ runner.temp }}/style_check
2021-09-10 09:12:11 +00:00
- name: Check out repository code
uses: actions/checkout@v2
2021-09-15 09:02:38 +00:00
- name: Style Check
2021-10-25 14:36:21 +00:00
run: |
cd $GITHUB_WORKSPACE/tests/ci
python3 style_check.py
2021-10-21 11:09:15 +00:00
Builder:
needs: DockerHubPush
runs-on: [self-hosted, builder]
strategy:
fail-fast: false
matrix:
2021-10-22 07:10:57 +00:00
build_number: [3, 7]
2021-10-21 11:09:15 +00:00
steps:
- name: Download changed images
uses: actions/download-artifact@v2
with:
name: changed_images
path: ${{ runner.temp }}/build_check
- name: Check out repository code
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Build
env:
TEMP_PATH: ${{runner.temp}}/build_check
REPO_COPY: ${{runner.temp}}/build_check/ClickHouse
2021-10-21 14:41:07 +00:00
CACHES_PATH: ${{runner.temp}}/../ccaches
2021-10-21 11:09:15 +00:00
CHECK_NAME: 'ClickHouse build check (actions)'
2021-10-25 14:36:21 +00:00
run: |
2021-10-25 17:11:51 +00:00
sudo rm -fr $TEMP_PATH
2021-10-25 14:36:21 +00:00
mkdir -p $TEMP_PATH
cp -r $GITHUB_WORKSPACE $TEMP_PATH
cd $REPO_COPY/tests/ci && python3 build_check.py "$CHECK_NAME" ${{ matrix.build_number }}
2021-10-21 11:09:15 +00:00
- name: Upload build URLs to artifacts
uses: actions/upload-artifact@v2
with:
name: ${{ env.BUILD_NAME }}
path: ${{ runner.temp }}/build_check/${{ env.BUILD_NAME }}.json
2021-10-21 14:41:07 +00:00
BuilderReport:
needs: Builder
runs-on: [self-hosted, style-checker]
steps:
- name: Download json reports
uses: actions/download-artifact@v2
with:
2021-10-21 15:32:15 +00:00
path: ${{runner.temp}}/reports_dir
2021-10-21 14:41:07 +00:00
- name: Check out repository code
uses: actions/checkout@v2
2021-10-21 15:32:15 +00:00
- name: Report Builder
2021-10-21 14:41:07 +00:00
env:
TEMP_PATH: ${{runner.temp}}/report_check
REPORTS_PATH: ${{runner.temp}}/reports_dir
CHECK_NAME: 'ClickHouse build check (actions)'
2021-10-25 14:36:21 +00:00
run: |
2021-10-25 17:11:51 +00:00
sudo rm -fr $TEMP_PATH
2021-10-25 14:36:21 +00:00
mkdir -p $TEMP_PATH
cd $GITHUB_WORKSPACE/tests/ci
python3 build_report_check.py "$CHECK_NAME"
2021-10-22 09:26:39 +00:00
FastTest:
needs: DockerHubPush
runs-on: [self-hosted, builder]
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Fast Test
env:
TEMP_PATH: ${{runner.temp}}/fasttest
REPO_COPY: ${{runner.temp}}/fasttest/ClickHouse
CACHES_PATH: ${{runner.temp}}/../ccaches
2021-10-25 14:36:21 +00:00
run: |
2021-10-25 17:11:51 +00:00
sudo rm -fr $TEMP_PATH
2021-10-25 14:36:21 +00:00
mkdir -p $TEMP_PATH
cp -r $GITHUB_WORKSPACE $TEMP_PATH
cd $REPO_COPY/tests/ci && python3 fast_test_check.py
FinishCheck:
2021-10-22 10:52:29 +00:00
needs: [StyleCheck, DockerHubPush, CheckLabels, BuilderReport, FastTest]
2021-10-21 11:09:15 +00:00
runs-on: [self-hosted, style-checker]
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Finish label
2021-10-25 14:36:21 +00:00
run: |
cd $GITHUB_WORKSPACE/tests/ci
python3 finish_check.py