From f0429903135007467acffa1e48b9eefcc2f05671 Mon Sep 17 00:00:00 2001 From: JinwooHwang Date: Wed, 9 Sep 2026 08:47:43 -0400 Subject: [PATCH] GEODE-10639: Remove the geode-native build image steps from promote_rc.sh geode-native removed its root docker/Dockerfile and .travis.yml in 2021, so the build environment image these steps produced has had no source since then and was last published in 2022. --- dev-tools/release/promote_rc.sh | 35 --------------------------------- 1 file changed, 35 deletions(-) diff --git a/dev-tools/release/promote_rc.sh b/dev-tools/release/promote_rc.sh index 7fbf473cc64..eca07e5e203 100755 --- a/dev-tools/release/promote_rc.sh +++ b/dev-tools/release/promote_rc.sh @@ -293,10 +293,6 @@ set -x cd ${GEODE_NATIVE} git pull -r set +x -if [ -r .travis.yml ] ; then - sed -e "s/geode-native-build:[latest0-9.]*/geode-native-build:${VERSION}/" \ - -i.bak .travis.yml -fi sed -e "s/GEODE_VERSION=.*/GEODE_VERSION=${VERSION}/" \ -e "s/^ENV GEODE_VERSION.*/ENV GEODE_VERSION ${VERSION}/" \ -i.bak $(git grep -l GEODE_VERSION= ; git grep -l 'ENV GEODE_VERSION') @@ -342,22 +338,6 @@ docker build -t apachegeode/geode:${VERSION} . set +x -echo "" -echo "============================================================" -echo "Building Native docker image" -echo "============================================================" -if [ -f ${GEODE_NATIVE}/docker/Dockerfile ] ; then - set -x - cd ${GEODE_NATIVE}/docker - docker build . || docker build . || docker build . - docker build -t apachegeode/geode-native-build:${VERSION} . - [ -n "$LATER" ] || docker build -t apachegeode/geode-native-build:latest . - set +x -else - echo "geode-native has no docker/Dockerfile on this branch; skipping the native image build" -fi - - echo "" echo "============================================================" echo "Publishing Geode docker image" @@ -370,21 +350,6 @@ docker push apachegeode/geode:${VERSION} set +x -echo "" -echo "============================================================" -echo "Publishing Native docker image" -echo "============================================================" -if [ -f ${GEODE_NATIVE}/docker/Dockerfile ] ; then - set -x - cd ${GEODE_NATIVE}/docker - docker push apachegeode/geode-native-build:${VERSION} - [ -n "$LATER" ] || docker push apachegeode/geode-native-build:latest - set +x -else - echo "geode-native has no docker/Dockerfile on this branch; skipping the native image push" -fi - - if [ -z "$LATER" ] ; then echo "" echo "============================================================"