Buildkite automation for multinode test. This test is ignored by default because it requires a large cpu machine to run.
9 lines
184 B
Bash
Executable File
9 lines
184 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
here=$(dirname "$0")
|
|
cd "$here"/..
|
|
export RUST_BACKTRACE=1
|
|
export RUST_LOG=multinode=info
|
|
set -x
|
|
exec cargo test --release test_multi_node_dynamic_network -- --ignored
|