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
4 changes: 2 additions & 2 deletions .github/workflows/build-push-besu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
repository:
description: The source besu repository to build from
default: hyperledger/besu
default: besu-eth/besu
type: string
required: true
ref:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
with:
input: ${{ inputs.docker_tag || inputs.ref }}
repository: ${{ inputs.repository }}
upstream_repository: hyperledger/besu
upstream_repository: besu-eth/besu
docker_tag: ${{ inputs.docker_tag }}
deploy:
needs:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Automates docker builds for ethereum clients. The build process is scheduled eve
## Build image on demand

Run the *Build **client*** workflow;
- [Build Besu](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-besu.yml) [[source](https://github.com/hyperledger/besu)]
- [Build Besu](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-besu.yml) [[source](https://github.com/besu-eth/besu)]
- [Build Dummy-EL](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-dummy-el.yml) [[source](https://github.com/ethpandaops/dummy-el)]
- [Build Eleel](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-eleel.yml) [[source](https://github.com/sigp/eleel)]
- [Build Erigon](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-erigon.yml) [[source](https://github.com/ledgerwatch/erigon)]
Expand Down
2 changes: 1 addition & 1 deletion besu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd ${SCRIPT_DIR}/../source

# generate the docker image tag based off besu gradle build
# view the calculateVersion gradle function incase of changes upstream
# https://github.com/hyperledger/besu/blob/main/build.gradle
# https://github.com/besu-eth/besu/blob/main/build.gradle
getImageTag() {
local length=${1:-8} # Default length
local gitFolder="$PWD/.git/"
Expand Down
2 changes: 1 addition & 1 deletion generate_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Default repository mapping for known clients
DEFAULT_REPOS = {
'besu': 'hyperledger/besu',
'besu': 'besu-eth/besu',
'erigon': 'erigontech/erigon',
'ethereumjs': 'ethereumjs/ethereumjs-monorepo',
'ethrex': 'lambdaclass/ethrex',
Expand Down
2 changes: 1 addition & 1 deletion goevmlab/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@

RUN apt-get update -q && apt-get install -qy --no-install-recommends git ca-certificates \
openjdk-21-jdk-headless=21* libjemalloc-dev=5.*
RUN git clone https://github.com/hyperledger/besu.git --depth 1 #--recurse-submodules
RUN git clone https://github.com/besu-eth/besu.git --depth 1 #--recurse-submodules
RUN cd besu && ./gradlew --parallel ethereum:evmtool:installDist
RUN mkdir /out && mv besu/ethereum/evmtool/build/install/evmtool /out/evmtool

Expand Down