Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Protoc in CI #26

Merged
merged 2 commits into from
Jan 10, 2024
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
]
steps:
- uses: actions/checkout@v4
- uses: arduino/setup-protoc@v2
- uses: Swatinem/rust-cache@v2
- name: Default on nightly Rust
run: rustup default nightly
Expand Down
3 changes: 3 additions & 0 deletions crates/node/src/rpc_server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,9 @@ mod tests {
p2p_psk_passphrase: "secret.".to_string(),
provider: "qemu".to_string(),
vsock_listen_port: 8080,
num_cpus: 8,
mem_gb: 8,
gpu_devices: None,
});

let db = Arc::new(Database::new(&cfg.db_url).await.unwrap());
Expand Down
Loading