Skip to content

Commit

Permalink
ci: add spend dag building to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
grumbach committed Jun 6, 2024
1 parent e06d7e1 commit 4802a69
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/memcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ jobs:
run: cargo build --release --bin faucet --features gifting
timeout-minutes: 30

- name: Build auditor binary with svg dag
run: cargo build --release --bin sn_auditor --features svg-dag
timeout-minutes: 30

- name: Build tests
run: cargo test --release -p sn_node --test data_with_churn --test verify_routing_table --no-run
timeout-minutes: 30
Expand Down Expand Up @@ -313,6 +317,16 @@ jobs:
timeout-minutes: 5
if: always()

- name: Crawl DAG from genesis with auditor
run: |
./target/release/sn_auditor --log-output-dest=data-dir -k 49113d2083f57a976076adbe85decb75115820de1e6e74b47e0429338cef124a > auditor_output.txt
echo "=============================================================================="
cat auditor_output.txt
env:
SN_LOG: "all"
timeout-minutes: 5
if: always()

- name: Ensure discord_ids decrypted
run: |
rg 'node_' ./spend_dag_and_statistics.txt -o
Expand Down

0 comments on commit 4802a69

Please sign in to comment.