To test manually, we can run the Buildkite commands in the root of the repo to ensure they are successful.
Running the following commands in a repo root directory will be expected to succeed:
```
cd services/tunnelbroker
rm -rf target
nix develop --accept-flake-config -c bash -c "cargo build && cargo test"
cd src/libcpp/test
rm -rf build
nix develop --accept-flake-config -c bash -c "cmake -B build . && make -C build -j"
build/bin/runTests --gtest_filter="-AmqpManager*:DatabaseManager*"
```