Skip to content

Commit

Permalink
chore(ci): enable routing table test during memcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandSherwin committed Nov 24, 2023
1 parent 01b168e commit f5e446e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/memcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
run: cargo build --release --bins
timeout-minutes: 30

- name: Build churn tests
run: cargo test --release -p sn_node --test data_with_churn --no-run
- name: Build tests
run: cargo test --release -p sn_node --test data_with_churn --test verify_routing_table --no-run
timeout-minutes: 30

- name: Start a node instance that does not undergo churn
Expand Down Expand Up @@ -79,6 +79,10 @@ jobs:
shell: bash
run: echo "The SAFE_PEERS variable has been set to ${SAFE_PEERS}"

- name: Verify the routing tables of the nodes
run: cargo test --release -p sn_node --test verify_routing_table -- --nocapture
timeout-minutes: 5

- name: Create and fund a wallet to pay for files storage
run: |
cargo run --bin faucet --release -- --log-output-dest=data-dir send 5000000 $(cargo run --bin safe --release -- --log-output-dest=data-dir wallet address | tail -n 1) > initial_balance_from_faucet.txt
Expand Down

0 comments on commit f5e446e

Please sign in to comment.