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
340 changes: 214 additions & 126 deletions compiler/base/Cargo.toml

Large diffs are not rendered by default.

172 changes: 111 additions & 61 deletions compiler/base/crate-information.json

Large diffs are not rendered by default.

202 changes: 79 additions & 123 deletions compiler/base/orchestrator/Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions compiler/base/orchestrator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ toml = { version = "0.9.2", default-features = false, features = ["parse", "disp
tracing = { version = "0.1.37", default-features = false, features = ["attributes"] }

[target.'cfg(target_os = "linux")'.dependencies]
procfs = { version = "0.17.0", default-features = false }
procfs = { version = "0.18.0", default-features = false }

[target.'cfg(target_os = "macos")'.dependencies]
libc = { version = "0.2.150", default-features = false }
mach2 = { version = "0.4.1", default-features = false }
mach2 = { version = "0.5.0", default-features = false }

[dev-dependencies]
assert_matches = "1.5.0"
Expand Down
6 changes: 4 additions & 2 deletions compiler/base/orchestrator/src/coordinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3985,7 +3985,9 @@ mod tests {
#[tokio::test]
#[snafu::report]
async fn miri() -> Result<()> {
let coordinator = new_coordinator();
// We set the `MIRI_SYSROOT` variable to something that's only
// valid on Linux.
let coordinator = new_coordinator_docker();

let req = MiriRequest {
code: r#"
Expand Down Expand Up @@ -4013,7 +4015,7 @@ mod tests {
#[tokio::test]
#[snafu::report]
async fn miri_tests() -> Result<()> {
let coordinator = new_coordinator();
let coordinator = new_coordinator_docker();

let req = MiriRequest {
tests: true,
Expand Down
14 changes: 7 additions & 7 deletions tests/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ GEM
racc (~> 1.4)
public_suffix (6.0.2)
racc (1.8.1)
rack (3.2.0)
rack (3.2.1)
rack-test (2.2.0)
rack (>= 1.3)
regexp_parser (2.10.0)
rexml (3.4.1)
regexp_parser (2.11.2)
rexml (3.4.2)
rspec (3.13.1)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
Expand All @@ -49,13 +49,13 @@ GEM
rspec-mocks (3.13.5)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.4)
rubyzip (2.4.1)
selenium-webdriver (4.34.0)
rspec-support (3.13.5)
rubyzip (3.0.2)
selenium-webdriver (4.35.0)
base64 (~> 0.2)
logger (~> 1.4)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
rubyzip (>= 1.2.2, < 4.0)
websocket (~> 1.0)
websocket (1.2.11)
xpath (3.2.0)
Expand Down
Loading