Skip to content

Commit 981093a

Browse files
authored
Merge branch 'main' into dynamic-runtime
2 parents 1880fbe + 934ec38 commit 981093a

File tree

12 files changed

+147
-99
lines changed

12 files changed

+147
-99
lines changed

.github/ISSUE_TEMPLATE/daily_failure.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,4 @@ Comparing VM execution against Native produced diffs:
1212

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

15-
```
16-
{{ env.OUTPUT }}
17-
```
15+
- State Diffs Comparison: {{ env.COMPARISON_RESULT }}

.github/workflows/daily.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -191,19 +191,20 @@ jobs:
191191
run: |
192192
./scripts/cmp_state_dumps.sh | tee output
193193
194+
- name: Upload Compare Results
195+
uses: actions/upload-artifact@v4
196+
if: ${{ always() }}
197+
with:
198+
name: output-result
199+
path: output
200+
194201
- name: Prepare env vars
195202
if: ${{ always() }}
196203
run: |
197204
# Save workflow url
198205
REPO_URL="${{ github.server_url }}/${{ github.repository }}"
199206
echo "WORKFLOW_URL=$REPO_URL/actions/runs/${{ github.run_id }}" | tee -a $GITHUB_ENV
200-
201-
# Save output
202-
{
203-
echo 'OUTPUT<<EOF'
204-
cat output
205-
echo EOF
206-
} >> "$GITHUB_ENV"
207+
echo "COMPARISON_RESULT=$REPO_URL/actions/runs/${{ github.run_id }}/artifacts/${{ steps.upload_compare_results.outputs.artifact-id }}" | tee -a $GITHUB_ENV
207208
208209
- name: Create Issue
209210
if: ${{ failure() }}

.github/workflows/starknet-blocks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
repository: lambdaclass/starknet-replay
3434
path: starknet-replay
35-
ref: 6738a2ba8786118d38eb94b209949bcb8285cce0
35+
ref: 546457d800fd02f080888331aebecc15824bed91
3636
# We need native to build the runtime
3737
- name: Checkout Native
3838
uses: actions/checkout@v4
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
repository: lambdaclass/sequencer
4545
path: sequencer
46-
ref: ee977cc338f63f7bc34c01c21363b3a318bcac65
46+
ref: 15d6452d162ad5e3538e673d1e4df5abcff9452f
4747

4848
- name: Cache RPC Calls
4949
uses: actions/cache@v4

0 commit comments

Comments
 (0)