Skip to content
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

Add lockbud task to CI #6470

Open
wants to merge 6 commits into
base: unstable
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,20 @@ jobs:
done
echo "skip_ci=$SKIP_CI" >> $GITHUB_OUTPUT
lockbud:
jimmygchen marked this conversation as resolved.
Show resolved Hide resolved
name: lockbud
runs-on: ubuntu-latest
container:
image: eserilev/lockbud:latest
dapplion marked this conversation as resolved.
Show resolved Hide resolved
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: apt update && apt install -y cmake
- name: Generate code coverage
run: |
cargo lockbud -k deadlock
target-branch-check:
name: target-branch-check
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions consensus/state_processing/src/consensus_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ impl<E: EthSpec> ConsensusContext<E> {
}
}

#[allow(unknown_lints)]
#[allow(elided_named_lifetimes)]
pub fn get_indexed_attestation<'a>(
&'a mut self,
state: &BeaconState<E>,
Expand Down
Loading