Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 6 additions & 0 deletions .github/workflows/compile-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
zkvm: airbender
- el: ethrex
zkvm: openvm
include:
- el: ethrex
zkvm: zisk
ere_profile: ethrex
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -62,6 +66,7 @@ jobs:
- name: Compile guest
run: |
docker run \
${{ matrix.ere_profile && format('-e ERE_PROFILE={0}', matrix.ere_profile) || '' }} \
-e OPENVM_RUST_TOOLCHAIN=nightly-2025-10-30 \
-e RUST_LOG=info \
-v $PWD:/ere-guests \
Expand All @@ -76,6 +81,7 @@ jobs:
if: ${{ matrix.zkvm == 'zisk' }}
run: |
docker run \
${{ matrix.ere_profile && format('-e ERE_PROFILE={0}', matrix.ere_profile) || '' }} \
-e OPENVM_RUST_TOOLCHAIN=nightly-2025-10-30 \
-e RUST_LOG=info \
-v $PWD:/ere-guests \
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ jobs:
threads: 2
- zkvm: zisk
threads: 1
- guest: stateless-validator-ethrex
zkvm: zisk
ere_profile: ethrex
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -85,6 +88,12 @@ jobs:
restore-keys: |
${{ runner.os }}-bin-${{ matrix.guest }}-${{ matrix.zkvm }}-

- name: Enable Ere profile
if: matrix.ere_profile != ''
env:
ERE_PROFILE: ${{ matrix.ere_profile }}
run: echo "ERE_PROFILE=$ERE_PROFILE" >> "$GITHUB_ENV"

- name: Test
env:
RUST_LOG: info
Expand Down
96 changes: 48 additions & 48 deletions Cargo.lock

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

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ stateless = { git = "https://github.com/paradigmxyz/stateless", rev = "e5480e71a
tries = { git = "https://github.com/paradigmxyz/stateless", rev = "e5480e71a8031641ff471cad9dc482a7a14b32d5", default-features = false }

# ethrex
ethrex-common = { git = "https://github.com/lambdaclass/ethrex.git", rev = "ef81882cfab3eedcf52c788ced3333530ab01fdb", default-features = false }
ethrex-crypto = { git = "https://github.com/lambdaclass/ethrex.git", rev = "ef81882cfab3eedcf52c788ced3333530ab01fdb", default-features = false }
ethrex-guest-program = { git = "https://github.com/lambdaclass/ethrex.git", rev = "ef81882cfab3eedcf52c788ced3333530ab01fdb", default-features = false }
ethrex-rlp = { git = "https://github.com/lambdaclass/ethrex.git", rev = "ef81882cfab3eedcf52c788ced3333530ab01fdb", default-features = false }
ethrex-rpc = { git = "https://github.com/lambdaclass/ethrex.git", rev = "ef81882cfab3eedcf52c788ced3333530ab01fdb", default-features = false }
ethrex-vm = { git = "https://github.com/lambdaclass/ethrex.git", rev = "ef81882cfab3eedcf52c788ced3333530ab01fdb", default-features = false }
ethrex-common = { git = "https://github.com/lambdaclass/ethrex.git", tag = "v15.0.0", default-features = false }
ethrex-crypto = { git = "https://github.com/lambdaclass/ethrex.git", tag = "v15.0.0", default-features = false }
ethrex-guest-program = { git = "https://github.com/lambdaclass/ethrex.git", tag = "v15.0.0", default-features = false }
ethrex-rlp = { git = "https://github.com/lambdaclass/ethrex.git", tag = "v15.0.0", default-features = false }
ethrex-rpc = { git = "https://github.com/lambdaclass/ethrex.git", tag = "v15.0.0", default-features = false }
ethrex-vm = { git = "https://github.com/lambdaclass/ethrex.git", tag = "v15.0.0", default-features = false }

# ssz
libssz = { version = "0.2.2", default-features = false, features = ["alloc"] }
Expand All @@ -115,11 +115,11 @@ libssz_types = { package = "libssz-types", version = "0.2.2", default-features =
zkvm-interface = { git = "https://github.com/0xPolygonHermez/zisk.git", tag = "v0.18.0" }

# ere
ere-codec = { git = "https://github.com/eth-act/ere", tag = "v0.11.0" }
ere-platform-core = { git = "https://github.com/eth-act/ere", tag = "v0.11.0" }
ere-prover-core = { git = "https://github.com/eth-act/ere", tag = "v0.11.0" }
ere-dockerized = { git = "https://github.com/eth-act/ere", tag = "v0.11.0" }
ere-util-build = { git = "https://github.com/eth-act/ere", tag = "v0.11.0" }
ere-codec = { git = "https://github.com/eth-act/ere", tag = "v0.12.1" }
ere-platform-core = { git = "https://github.com/eth-act/ere", tag = "v0.12.1" }
ere-prover-core = { git = "https://github.com/eth-act/ere", tag = "v0.12.1" }
ere-dockerized = { git = "https://github.com/eth-act/ere", tag = "v0.12.1" }
ere-util-build = { git = "https://github.com/eth-act/ere", tag = "v0.12.1" }

# local
guest = { path = "crates/guest", default-features = false }
Expand Down
8 changes: 4 additions & 4 deletions bin/empty/airbender/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 bin/empty/airbender/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ version = "0.1.0"
edition = "2024"

[dependencies]
ere-platform-airbender = { git = "https://github.com/eth-act/ere", tag = "v0.11.0", features = [
ere-platform-airbender = { git = "https://github.com/eth-act/ere", tag = "v0.12.1", features = [
"std",
] }
8 changes: 4 additions & 4 deletions bin/empty/openvm/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 bin/empty/openvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ version = "0.1.0"
edition = "2024"

[dependencies]
ere-platform-openvm = { git = "https://github.com/eth-act/ere", tag = "v0.11.0", features = [
ere-platform-openvm = { git = "https://github.com/eth-act/ere", tag = "v0.12.1", features = [
"std",
] }
Loading
Loading