Skip to content
Merged
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
8 changes: 8 additions & 0 deletions .github/workflows/coverage-baseline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading