This is an automated email from the ASF dual-hosted git repository.

hubcio pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git


The following commit(s) were added to refs/heads/master by this push:
     new aa8b71917 ci(connectors): raise vm.max_map_count for Doris in coverage 
job (#3365)
aa8b71917 is described below

commit aa8b71917ed4dd0cefb8cbaf652e769da058281c
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Fri May 29 09:27:09 2026 +0200

    ci(connectors): raise vm.max_map_count for Doris in coverage job (#3365)
---
 .github/workflows/coverage-baseline.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.github/workflows/coverage-baseline.yml 
b/.github/workflows/coverage-baseline.yml
index 95dc655be..958b24222 100644
--- a/.github/workflows/coverage-baseline.yml
+++ b/.github/workflows/coverage-baseline.yml
@@ -60,6 +60,14 @@ jobs:
         with:
           tool: cargo-llvm-cov
 
+      # Doris 4.0.3's start_be.sh hard-`exit 1`s unless vm.max_map_count >= 
2000000.
+      # Host-only kernel param (no container can raise it). Mirrors the same 
step in
+      # .github/actions/rust/pre-merge/action.yml; without it every Doris 
connector
+      # integration test panics at fixture setup.
+      - name: Raise vm.max_map_count for Doris
+        run: sudo sysctl -w vm.max_map_count=2000000 || true
+        shell: bash
+
       - name: Build and test with coverage
         run: |
           source <(cargo llvm-cov show-env --export-prefix)

Reply via email to