Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -428,13 +428,15 @@ jobs:
# MSB_TEST_ISOLATE_HOME=1 turns on per-test ~/.microsandbox isolation
# (see crates/test-utils), so nextest can run tests in parallel without
# sqlite/image-cache contention.
# Keep real microVM/network concurrency bounded even on large self-hosted
# runners; num-cpus fan-out can overwhelm guest package installs.
- name: Run integration tests
env:
MSB_TEST_ISOLATE_HOME: "1"
run: |
export PATH="$HOME/.microsandbox/bin:$PATH"
export LD_LIBRARY_PATH="${{ github.workspace }}/build:$HOME/.microsandbox/lib"
cargo nextest run -p microsandbox --tests --run-ignored=only
cargo nextest run -p microsandbox --tests --run-ignored=only --test-threads 4

# ---------------------------------------------------------------------------
# Node.js SDK smoke tests (requires KVM)
Expand Down
103 changes: 92 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ indicatif = "0.18"
ipnetwork = { version = "0.21.0", features = ["serde"] }
libc = "0.2"
nix = "0.30"
notify = "8"
oci-client = "0.16"
oci-spec = "0.9.0"
rand = "0.10.1"
Expand Down
3 changes: 3 additions & 0 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,13 @@ net = [

[dependencies]
anyhow.workspace = true
base64.workspace = true
bytes.workspace = true
chrono.workspace = true
clap.workspace = true
console.workspace = true
dirs.workspace = true
futures.workspace = true
indicatif.workspace = true
ipnetwork = { workspace = true, optional = true }
libc.workspace = true
Expand Down
Loading
Loading