Skip to content

Commit 73d499a

Browse files
committed
ci: permit LSAPI supervisor process tests
Signed-off-by: faratech <35661811+faratech@users.noreply.github.com>
1 parent db92689 commit 73d499a

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,14 @@ jobs:
5151
run: cargo run -p httpjet --locked -- --root "$GITHUB_WORKSPACE/examples/litespeed" check --strict
5252

5353
- name: Run workspace tests
54-
run: cargo test --workspace --locked
54+
# The LSAPI supervisor suite signals and reaps detached descendants.
55+
# GitHub's runner blocks those operations for its unprivileged user.
56+
run: |
57+
sudo env \
58+
"PATH=$PATH" \
59+
"RUSTUP_HOME=$RUSTUP_HOME" \
60+
"CARGO_HOME=$CARGO_HOME" \
61+
cargo test --workspace --locked
5562
5663
dco:
5764
if: github.event_name == 'pull_request'

0 commit comments

Comments
 (0)