Skip to content

Commit ad02325

Browse files
authored
Merge branch 'main' into fix/701-unify-performance-and-benchmark-testing-pipelines
2 parents f1652b9 + 3488e1b commit ad02325

75 files changed

Lines changed: 9790 additions & 466 deletions

Some content is hidden

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

.github/CI_COMMANDS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Overview
44

55
This document describes the optimized CI/CD pipeline architecture introduced
6-
to address issues #663, #664, #665, and #666.
6+
to address issues #700, #701, #703, and #714.
77

88
---
99

@@ -20,7 +20,7 @@ All reusable logic lives under `.github/actions/`:
2020

2121
---
2222

23-
## Core CI Workflows (#663)
23+
## Core CI Workflows (#700)
2424

2525
### `ci.yml`
2626
- **Change detection** gates expensive jobs (helm-lint, api-docs, examples-smoke-test,
@@ -47,7 +47,7 @@ the critical path by ~35–40% compared to the previous sequential layout.
4747

4848
---
4949

50-
## Heavy Validation Workflows (#666)
50+
## Heavy Validation Workflows (#703)
5151

5252
### `chaos-tests.yml`
5353
- **Extracted** cluster provisioning into `setup-kind-cluster` composite action.

.github/actions/setup-rust/action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ runs:
2929
run: |
3030
sudo apt-get update -qq
3131
sudo apt-get install -y --no-install-recommends \
32+
cmake \
33+
pkg-config \
34+
libssl-dev \
3235
libsasl2-dev \
33-
libcurl4-openssl-dev \
34-
pkg-config
36+
libcurl4-openssl-dev
3537
3638
- name: Setup Rust cache
3739
uses: Swatinem/rust-cache@v2

0 commit comments

Comments
 (0)