Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
- [ ] <!---ci_exclude_stateless--> Stateless tests
- [ ] <!---ci_exclude_stateful--> Stateful tests
- [ ] <!---ci_exclude_performance--> Performance tests
- [ ] <!---ci_exclude_asan--> All with ASAN
- [x] <!---ci_exclude_aarch64|arm--> Aarch64 tests
- [x] <!---ci_exclude_asan--> All with ASAN
- [x] <!---ci_exclude_tsan--> All with TSAN
- [x] <!---ci_exclude_msan--> All with MSAN
- [x] <!---ci_exclude_ubsan--> All with UBSAN
- [x] <!---ci_exclude_coverage--> All with Coverage
- [ ] <!---ci_exclude_aarch64|arm--> All with Aarch64
- [ ] <!---ci_exclude_regression--> All Regression
- [ ] <!---no_ci_cache--> Disable CI Cache

Expand Down
1,061 changes: 930 additions & 131 deletions .github/workflows/master.yml

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions .github/workflows/nightly_keeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,18 @@ jobs:
. ./ci/tmp/praktika_setup_env.sh
PYTHONUNBUFFERED=1 python3 -m praktika run 'Build (arm_binary)' --workflow "NightlyKeeperNoFaults" --ci --timestamp

- name: Upload artifact CH_ARM_BIN_GH
id: upload_CH_ARM_BIN_GH
uses: actions/upload-artifact@v7
continue-on-error: true
with:
name: CH_ARM_BIN_GH
path: ci/tmp/build/programs/self-extracting/clickhouse
retention-days: 1
- name: Warn on failed upload of CH_ARM_BIN_GH
if: steps.upload_CH_ARM_BIN_GH.outcome == 'failure'
run: echo "::warning title=GH artifact upload failed::Failed to upload [CH_ARM_BIN_GH] to GitHub artifacts (e.g. quota/rate limit). Downstream consumers will fall back to S3."

keeper_stress_no_faults:
runs-on: [self-hosted, altinity-on-demand, altinity-func-tester-aarch64]
needs: [build_arm_binary, config_workflow, dockers_build_amd, dockers_build_arm]
Expand Down Expand Up @@ -248,6 +260,13 @@ jobs:
EOF
ENV_SETUP_SCRIPT_EOF

- name: Download artifact CH_ARM_BIN_GH
uses: actions/download-artifact@v8
continue-on-error: true
with:
name: CH_ARM_BIN_GH
path: ./ci/tmp

- name: Run
id: run
run: |
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/nightly_keeper_faults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,18 @@ jobs:
. ./ci/tmp/praktika_setup_env.sh
PYTHONUNBUFFERED=1 python3 -m praktika run 'Build (arm_binary)' --workflow "NightlyKeeperFaults" --ci --timestamp

- name: Upload artifact CH_ARM_BIN_GH
id: upload_CH_ARM_BIN_GH
uses: actions/upload-artifact@v7
continue-on-error: true
with:
name: CH_ARM_BIN_GH
path: ci/tmp/build/programs/self-extracting/clickhouse
retention-days: 1
- name: Warn on failed upload of CH_ARM_BIN_GH
if: steps.upload_CH_ARM_BIN_GH.outcome == 'failure'
run: echo "::warning title=GH artifact upload failed::Failed to upload [CH_ARM_BIN_GH] to GitHub artifacts (e.g. quota/rate limit). Downstream consumers will fall back to S3."

keeper_stress_faults:
runs-on: [self-hosted, altinity-on-demand, altinity-func-tester-aarch64]
needs: [build_arm_binary, config_workflow, dockers_build_amd, dockers_build_arm]
Expand Down Expand Up @@ -248,6 +260,13 @@ jobs:
EOF
ENV_SETUP_SCRIPT_EOF

- name: Download artifact CH_ARM_BIN_GH
uses: actions/download-artifact@v8
continue-on-error: true
with:
name: CH_ARM_BIN_GH
path: ./ci/tmp

- name: Run
id: run
run: |
Expand Down
Loading
Loading