Skip to content

Commit 6818c4c

Browse files
barnabasbusaclaude
andauthored
chore: update besu refs from hyperledger to besu-eth org (#341)
## Summary - Updates all GitHub repository references from `hyperledger/besu` to `besu-eth/besu` following the org transfer - Affects: `generate_config.py`, `build-push-besu.yml`, `besu/build.sh` (comment URL), `goevmlab/Dockerfile`, `README.md` **Note:** The Docker image tags in `besu/build.sh` (`hyperledger/besu:...`) are intentionally left unchanged — they match what Besu's Gradle `distDocker` produces locally. If upstream updates their `build.gradle` to use `besu-eth/besu`, those will need a follow-up update. ## Test plan - [ ] Trigger a manual besu build and verify it checks out from `besu-eth/besu` - [ ] Verify scheduled builds pick up besu commits correctly 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 6608dfd commit 6818c4c

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build-push-besu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
inputs:
66
repository:
77
description: The source besu repository to build from
8-
default: hyperledger/besu
8+
default: besu-eth/besu
99
type: string
1010
required: true
1111
ref:
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
input: ${{ inputs.docker_tag || inputs.ref }}
3939
repository: ${{ inputs.repository }}
40-
upstream_repository: hyperledger/besu
40+
upstream_repository: besu-eth/besu
4141
docker_tag: ${{ inputs.docker_tag }}
4242
deploy:
4343
needs:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Automates docker builds for ethereum clients. The build process is scheduled eve
55
## Build image on demand
66

77
Run the *Build **client*** workflow;
8-
- [Build Besu](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-besu.yml) [[source](https://github.com/hyperledger/besu)]
8+
- [Build Besu](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-besu.yml) [[source](https://github.com/besu-eth/besu)]
99
- [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)]
1010
- [Build Eleel](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-eleel.yml) [[source](https://github.com/sigp/eleel)]
1111
- [Build Erigon](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-erigon.yml) [[source](https://github.com/ledgerwatch/erigon)]

besu/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cd ${SCRIPT_DIR}/../source
66

77
# generate the docker image tag based off besu gradle build
88
# view the calculateVersion gradle function incase of changes upstream
9-
# https://github.com/hyperledger/besu/blob/main/build.gradle
9+
# https://github.com/besu-eth/besu/blob/main/build.gradle
1010
getImageTag() {
1111
local length=${1:-8} # Default length
1212
local gitFolder="$PWD/.git/"

generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Default repository mapping for known clients
88
DEFAULT_REPOS = {
9-
'besu': 'hyperledger/besu',
9+
'besu': 'besu-eth/besu',
1010
'erigon': 'erigontech/erigon',
1111
'ethereumjs': 'ethereumjs/ethereumjs-monorepo',
1212
'ethrex': 'lambdaclass/ethrex',

goevmlab/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127

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

0 commit comments

Comments
 (0)