We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bfc418 commit aa8b719Copy full SHA for aa8b719
1 file changed
.github/workflows/coverage-baseline.yml
@@ -60,6 +60,14 @@ jobs:
60
with:
61
tool: cargo-llvm-cov
62
63
+ # Doris 4.0.3's start_be.sh hard-`exit 1`s unless vm.max_map_count >= 2000000.
64
+ # Host-only kernel param (no container can raise it). Mirrors the same step in
65
+ # .github/actions/rust/pre-merge/action.yml; without it every Doris connector
66
+ # integration test panics at fixture setup.
67
+ - name: Raise vm.max_map_count for Doris
68
+ run: sudo sysctl -w vm.max_map_count=2000000 || true
69
+ shell: bash
70
+
71
- name: Build and test with coverage
72
run: |
73
source <(cargo llvm-cov show-env --export-prefix)
0 commit comments