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 to ci #9

Closed
wants to merge 42 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
cf8f8e9
add lockbud to ci
eserilev Sep 19, 2024
51eb639
alloy v0.3.1
eserilev Sep 19, 2024
8ef172a
disable default feats
eserilev Sep 19, 2024
2050bc5
nightly
eserilev Sep 19, 2024
729e5bd
update nightly
eserilev Sep 19, 2024
f3c6d1d
update
eserilev Sep 19, 2024
689e6d5
update
eserilev Sep 19, 2024
0d86d40
fix
eserilev Sep 19, 2024
011bc20
update
eserilev Sep 19, 2024
42fe7b2
update
eserilev Sep 19, 2024
e4ee093
fix
eserilev Sep 19, 2024
18749e7
fix
eserilev Sep 19, 2024
d1a79ee
Merge branch 'unstable' of https://github.com/sigp/lighthouse into lo…
eserilev Sep 20, 2024
fb35cc3
Merge branch 'lockbud-ci' of https://github.com/eserilev/lighthouse i…
eserilev Sep 20, 2024
d98e559
fix
eserilev Sep 20, 2024
f300b0c
Merge branch 'unstable' of https://github.com/sigp/lighthouse into lo…
eserilev Oct 6, 2024
f55606f
update image
eserilev Oct 6, 2024
d92c0b5
fix
eserilev Oct 6, 2024
06b8d7d
fix
eserilev Oct 6, 2024
0a469ba
test
eserilev Oct 6, 2024
8b6d22f
fix
eserilev Oct 6, 2024
efe3922
hmm
eserilev Oct 6, 2024
1d677d2
ignore openssl
eserilev Oct 6, 2024
c04f243
fix
eserilev Oct 6, 2024
bdd6f9c
fix
eserilev Oct 6, 2024
89d55dd
fix
eserilev Oct 6, 2024
6b8a74d
fix
eserilev Oct 6, 2024
b4b6556
fix
eserilev Oct 6, 2024
7520f33
fix
eserilev Oct 6, 2024
cc40420
fix
eserilev Oct 6, 2024
cb2b44d
disable openssl
eserilev Oct 6, 2024
380d2ac
fix
eserilev Oct 7, 2024
b633720
update
eserilev Oct 7, 2024
7bf4dad
update
eserilev Oct 7, 2024
420b36b
update
eserilev Oct 7, 2024
bf25fdf
fix
eserilev Oct 7, 2024
bfc7944
fix
eserilev Oct 7, 2024
53526ee
update
eserilev Oct 7, 2024
0af71ba
allow elided lifetimes
eserilev Oct 7, 2024
2096a5d
update
eserilev Oct 7, 2024
c2f3224
update
eserilev Oct 7, 2024
89cc71a
update
eserilev Oct 7, 2024
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:
name: lockbud
runs-on: ubuntu-latest
container:
image: eserilev/lockbud:latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: apt update && apt install -y cmake
- name: Generate code coverage
run: |
cargo lockbud -k deadlock -b -l=openssl,openssl-sys,native-tls,tokio,tokio-stream,tokio-util,ethereum_hashing

target-branch-check:
name: target-branch-check
runs-on: ubuntu-latest
Expand Down
35 changes: 4 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ edition = "2021"
[workspace.dependencies]
alloy-primitives = "0.8"
alloy-rlp = "0.3.4"
alloy-consensus = "0.3.0"
alloy-consensus = { version = "0.3.1", default-features = false }
anyhow = "1"
arbitrary = { version = "1", features = ["derive"] }
async-channel = "1.9.0"
Expand Down
1 change: 1 addition & 0 deletions consensus/state_processing/src/consensus_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ impl<E: EthSpec> ConsensusContext<E> {
}
}

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