-
Notifications
You must be signed in to change notification settings - Fork 37
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
fix(l1, l2, levm) #1433
fix(l1, l2, levm) #1433
Changes from all commits
55b8ae9
7480665
1689bb1
53f1562
045dcc3
2cb3169
a8cbe20
8d6abde
feb75ff
b0516fa
6526422
991f700
c79613d
e3801de
e90ed5b
fa75f19
7719d12
4924b98
07e01d2
2a30a27
900de95
1e488ef
2720839
351c21e
a9fbc7a
c271e34
36a3c07
013963c
c40fdfa
ef7bd71
4f85dbb
878e4a1
764a0c3
6384667
6df5241
596c13d
e21888c
1900334
e25b8cb
7e10f0a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,6 +124,10 @@ jobs: | |
restore-keys: | | ||
loc-report- | ||
|
||
- name: Check previous loc report | ||
run: | | ||
cat loc_report.json | ||
|
||
- name: Rename cached loc_report.json to loc_report.json.old | ||
if: steps.cache-loc-report.outputs.cache-hit == 'true' | ||
run: mv loc_report.json loc_report.json.old | ||
|
@@ -141,7 +145,7 @@ jobs: | |
|
||
- name: Post results in summary | ||
run: | | ||
echo "# `ethrex` lines of code report" >> $GITHUB_STEP_SUMMARY | ||
echo "# 'ethrex' lines of code report" >> $GITHUB_STEP_SUMMARY | ||
cat loc_report_github.txt >> $GITHUB_STEP_SUMMARY | ||
|
||
- name: Post results to ethrex L1 slack channel | ||
|
@@ -159,6 +163,13 @@ jobs: | |
url: ${{ secrets.LEVM_SLACK_WEBHOOK }} | ||
run: sh .github/scripts/publish_loc.sh | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why are we removing this line? isn't it needed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes! That's why I was getting an error. I deleted the line by mistake. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed here: ef7bd71 |
||
|
||
# This is left commented out to ease debugging later on. | ||
# Comment out all the other "Post to * slack channel" directives | ||
# - name: Post results to test slack channel | ||
# env: | ||
# url: ${{ secrets.TEST_CHANNEL_SLACK }} | ||
# run: sh .github/scripts/publish_loc.sh | ||
|
||
levm-test: | ||
name: Generate Report for LEVM EF Tests | ||
runs-on: ubuntu-latest | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added this directive here to read the
loc_report.json
that was saved in the cache.