File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
docker/mongodb-kubernetes-tests Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ RUN apt-get -qq update \
4848 curl \
4949 libldap2-dev \
5050 libsasl2-dev \
51- git
5251
5352RUN mkdir -p /tmp/mongodb-tools && \
5453 tar xfz /tmp/mongodb-tools.tgz -C /tmp/mongodb-tools && \
Original file line number Diff line number Diff line change @@ -48,7 +48,10 @@ deploy_test_app() {
4848 BUILD_ID=" ${BUILD_ID:- default_build_id} "
4949 BUILD_VARIANT=" ${BUILD_VARIANT:- default_build_variant} "
5050
51- chart_info=$( scripts/dev/run_python.sh scripts/release/oci_chart_info.py --build_scenario " ${BUILD_SCENARIO} " )
51+ if ! chart_info=$( scripts/dev/run_python.sh scripts/release/oci_chart_info.py --build-scenario " ${BUILD_SCENARIO} " 2>&1 ) ; then
52+ echo " ${chart_info} "
53+ exit 1
54+ fi
5255 helm_oci_registry=$( echo " ${chart_info} " | jq -r ' .registry' )
5356 helm_oci_repository=$( echo " ${chart_info} " | jq -r ' .repository' )
5457 helm_oci_registry_region=$( echo " ${chart_info} " | jq -r ' .region' )
Original file line number Diff line number Diff line change 22import json
33from dataclasses import asdict
44
5- from release .build .build_scenario import BuildScenario
6-
75from scripts .release .build .build_info import load_build_info
6+ from scripts .release .build .build_scenario import BuildScenario
87
98
109def main ():
You can’t perform that action at this time.
0 commit comments