-
Notifications
You must be signed in to change notification settings - Fork 28
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 broken Github Actions environments of main
branch
#290
Conversation
main
branchmain
branch
lint.yaml
Can't fix unused in the "_test.go" since there is a bug in We should upgrade
In addition, |
0fcd279
to
47f98c0
Compare
tests.yml
Can't fix the missing cache-hit since there is a bug in I did workaround for each jobs( - uses: actions/cache@v1
+ id: gobin-cache
with:
path: ~/go/bin
key: ${{ runner.os }}-${{ github.sha }}-oc-binary
if: env.GIT_DIFF
+ - name: Re-install when cannot get the cached binary
+ run: make install install_abci
+ if: steps.gobin-cache.outputs.cache-hit != 'true' |
Codecov Report
@@ Coverage Diff @@
## main #290 +/- ##
=======================================
Coverage ? 61.22%
=======================================
Files ? 273
Lines ? 30013
Branches ? 0
=======================================
Hits ? 18374
Misses ? 9959
Partials ? 1680 |
24ddc95
to
d632ebf
Compare
…State.GetState()`
… for `statesync`
7f2a03a
to
4672023
Compare
a84b9ae
to
1bb7c29
Compare
main
branchmain
branch
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.
LGTM
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.
LGTM
Relate: #289
Description
Fix the below:
golangci/[email protected]
actions/cache@v1
andactions/[email protected]
1bb7c29: In addition, I changed the original behavior of
notifyTxsAvailable
because I think there is a timing issue when it calls, and I don't thinkpanic
is a good behavior