Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reward tracking #1653

Merged
merged 5 commits into from
May 2, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
chore(CI): disable the audit step during memcheck test
maqi committed May 2, 2024
commit 9a7fe0656ca93e071587f856c2aa20f28316afb1
32 changes: 17 additions & 15 deletions .github/workflows/memcheck.yml
Original file line number Diff line number Diff line change
@@ -279,14 +279,15 @@ jobs:
SN_LOG: "all"
timeout-minutes: 10

- name: Audit from genesis to collect entire spend DAG and dump to a dot file
run: |
cargo run --bin safe --release -- --log-output-dest=data-dir wallet audit --dot > spend_dag_and_statistics.txt
echo "=============================================================================="
cat spend_dag_and_statistics.txt
env:
SN_LOG: "all"
timeout-minutes: 60
# Disable this test temporarily as it takes too long time, which blocks the merge queue.
# - name: Audit from genesis to collect entire spend DAG and dump to a dot file
# run: |
# cargo run --bin safe --release -- --log-output-dest=data-dir wallet audit --dot > spend_dag_and_statistics.txt
# echo "=============================================================================="
# cat spend_dag_and_statistics.txt
# env:
# SN_LOG: "all"
# timeout-minutes: 60

- name: Check nodes running
shell: bash
@@ -446,10 +447,11 @@ jobs:
continue-on-error: true
if: always()

- name: Upload spend DAG and statistics
uses: actions/upload-artifact@main
with:
name: memory_check_spend_dag_and_statistics
path: spend_dag_and_statistics.txt
continue-on-error: true
if: always()
# Re-enable this block once the previous step of audit got enabled.
# - name: Upload spend DAG and statistics
# uses: actions/upload-artifact@main
# with:
# name: memory_check_spend_dag_and_statistics
# path: spend_dag_and_statistics.txt
# continue-on-error: true
# if: always()