From 2119e6e01889fda3b7afe8b9ee66eed3abf94ad4 Mon Sep 17 00:00:00 2001 From: David J Parrott Date: Fri, 24 Jul 2026 20:30:54 -0400 Subject: [PATCH] e2e-build: refresh stale GIT_BRANCH_* defaults to the manifest mainlines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The argless build documented in LOCAL_DOCKER_E2E_CLUSTER_GUIDE.md used the Dockerfile's GIT_BRANCH_* defaults, which still pointed at pre-integration feature branches (wire-sysio feature/opp-part2, wire-solana feature/opp-solana-outpost-integration, wire-ethereum feature/protobufs-for-opp) — two branch generations behind what the repo manifest tracks today. Point the defaults at the current mainlines instead (sysio=master, solana=next, ethereum=next; cdt/libraries-ts/tools-ts were already on master), so a no-args build produces an image of the current platform. Note: master's wire-sysio ships generate-opp-bundles.sh (renamed from .fish), so this depends on the wire-local-setup.bash rename support landing first — merge after that PR. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01K4FBvbwEeTj7ByeJzjehbQ --- e2e-build.Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e-build.Dockerfile b/e2e-build.Dockerfile index 1d7cea9..3c1334a 100644 --- a/e2e-build.Dockerfile +++ b/e2e-build.Dockerfile @@ -176,9 +176,9 @@ WORKDIR ${WIRE_ROOT} # `set -e` (via `&&` chaining) ensures any failure aborts before the unset. ARG GIT_BRANCH_CDT=master -ARG GIT_BRANCH_SYSIO=feature/opp-part2 -ARG GIT_BRANCH_SOLANA=feature/opp-solana-outpost-integration -ARG GIT_BRANCH_ETHEREUM=feature/protobufs-for-opp +ARG GIT_BRANCH_SYSIO=master +ARG GIT_BRANCH_SOLANA=next +ARG GIT_BRANCH_ETHEREUM=next ARG GIT_BRANCH_LIBRARIES_TS=master ARG GIT_BRANCH_TOOLS_TS=master RUN --mount=type=secret,id=github_token,required=true \