Skip to content

Commit

Permalink
fix(levm): ef tests run summary file paths (#1353)
Browse files Browse the repository at this point in the history
I run the script locally, and the summary files are being written at
`cmd/ef_tests/levm`
  • Loading branch information
ilitteri authored Nov 29, 2024
1 parent 7a9c400 commit 0e192cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/publish_levm_ef_tests_summary.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
curl -X POST $url \
-H 'Content-Type: application/json; charset=utf-8' \
--data @- <<EOF
$(jq -n --arg text "$(cat crates/vm/levm/levm_ef_tests_summary_slack.txt)" '{
$(jq -n --arg text "$(cat cmd/ef_tests/levm/levm_ef_tests_summary_slack.txt)" '{
"blocks": [
{
"type": "header",
Expand All @@ -17,7 +17,7 @@ $(jq -n --arg text "$(cat crates/vm/levm/levm_ef_tests_summary_slack.txt)" '{
"type": "section",
"text": {
"type": "mrkdwn",
"text": $text
"text": "$text"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/levm_reporter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Post results in summary
run: |
echo "# Daily LEVM EF Tests Run Report" >> $GITHUB_STEP_SUMMARY
cat crates/vm/levm/levm_ef_tests_summary_github.txt >> $GITHUB_STEP_SUMMARY
cat cmd/ef_tests/levm/levm_ef_tests_summary_github.txt >> $GITHUB_STEP_SUMMARY
- name: Post results to ethrex L1 slack channel
env:
Expand Down

0 comments on commit 0e192cd

Please sign in to comment.