Skip to content

Commit

Permalink
Merge branch 'main' into add-trace-dump-contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianGCalderon committed Jan 23, 2025
2 parents c2529e1 + ecb0c82 commit d9a22a9
Show file tree
Hide file tree
Showing 58 changed files with 224 additions and 160 deletions.
4 changes: 1 addition & 3 deletions .github/ISSUE_TEMPLATE/daily_failure.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,4 @@ Comparing VM execution against Native produced diffs:

The transaction were not compared in order. You should rerun the whole failing block to find the error root

```
{{ env.OUTPUT }}
```
- State Diffs Comparison: {{ env.COMPARISON_RESULT }}
7 changes: 6 additions & 1 deletion .github/workflows/bench-hyperfine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,16 @@ jobs:
- name: Print tables
run: |
{
echo "${bold}Benchmark results Main vs HEAD.${normal}"
echo "## **Benchmark results Main vs HEAD.**"
for f in bench-results-base/*.md; do
echo "### Base"
echo
cat $f
echo
echo "### Head"
echo
cat bench-results-head/$(basename $f)
echo
done
} | tee -a comment_body.md
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,19 +191,20 @@ jobs:
run: |
./scripts/cmp_state_dumps.sh | tee output
- name: Upload Compare Results
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: output-result
path: output

- name: Prepare env vars
if: ${{ always() }}
run: |
# Save workflow url
REPO_URL="${{ github.server_url }}/${{ github.repository }}"
echo "WORKFLOW_URL=$REPO_URL/actions/runs/${{ github.run_id }}" | tee -a $GITHUB_ENV
# Save output
{
echo 'OUTPUT<<EOF'
cat output
echo EOF
} >> "$GITHUB_ENV"
echo "COMPARISON_RESULT=$REPO_URL/actions/runs/${{ github.run_id }}/artifacts/${{ steps.upload_compare_results.outputs.artifact-id }}" | tee -a $GITHUB_ENV
- name: Create Issue
if: ${{ failure() }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/starknet-blocks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
with:
repository: lambdaclass/starknet-replay
path: starknet-replay
ref: 6738a2ba8786118d38eb94b209949bcb8285cce0
ref: 546457d800fd02f080888331aebecc15824bed91
# We need native to build the runtime
- name: Checkout Native
uses: actions/checkout@v4
Expand All @@ -43,7 +43,7 @@ jobs:
with:
repository: lambdaclass/sequencer
path: sequencer
ref: ee977cc338f63f7bc34c01c21363b3a318bcac65
ref: 15d6452d162ad5e3538e673d1e4df5abcff9452f

- name: Cache RPC Calls
uses: actions/cache@v4
Expand Down
Loading

0 comments on commit d9a22a9

Please sign in to comment.