From 18140fc59f4058362dff0eb4e14c9ed68ffc4eb1 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev Date: Tue, 24 Dec 2024 16:39:38 -0500 Subject: [PATCH] Update integrations images build script. Remove pre-2.5 image builds commands since the minimum Ruby version we now support is 2.5. Add 3.4 as a supported Ruby version to the help text (it is already handled by the script). --- integration/script/build-images | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/integration/script/build-images b/integration/script/build-images index 9a98f4f9516..d3a0f633a25 100755 --- a/integration/script/build-images +++ b/integration/script/build-images @@ -14,7 +14,7 @@ while getopts ":hv:" opt; do echo "Usage: ./script/build-images [-v RUBY_VERSION]" echo echo "If no Ruby version is specified, images are built for each of the" - echo "supported versions (currently 2.1 through 3.3)." + echo "supported versions (currently 2.5 through 3.4)." exit 0 ;; v) @@ -39,10 +39,6 @@ docker build -t datadog/dd-apm-demo:agent -f $INTEGRATION_DIR/images/agent/Docke if test -n "$APP_RUBY_VERSION"; then docker build -t datadog/dd-apm-demo:rb-$APP_RUBY_VERSION -f $INTEGRATION_DIR/images/ruby/$APP_RUBY_VERSION/Dockerfile $INTEGRATION_DIR/images else - docker build -t datadog/dd-apm-demo:rb-2.1 -f $INTEGRATION_DIR/images/ruby/2.1/Dockerfile $INTEGRATION_DIR/images - docker build -t datadog/dd-apm-demo:rb-2.2 -f $INTEGRATION_DIR/images/ruby/2.2/Dockerfile $INTEGRATION_DIR/images - docker build -t datadog/dd-apm-demo:rb-2.3 -f $INTEGRATION_DIR/images/ruby/2.3/Dockerfile $INTEGRATION_DIR/images - docker build -t datadog/dd-apm-demo:rb-2.4 -f $INTEGRATION_DIR/images/ruby/2.4/Dockerfile $INTEGRATION_DIR/images docker build -t datadog/dd-apm-demo:rb-2.5 -f $INTEGRATION_DIR/images/ruby/2.5/Dockerfile $INTEGRATION_DIR/images docker build -t datadog/dd-apm-demo:rb-2.6 -f $INTEGRATION_DIR/images/ruby/2.6/Dockerfile $INTEGRATION_DIR/images docker build -t datadog/dd-apm-demo:rb-2.7 -f $INTEGRATION_DIR/images/ruby/2.7/Dockerfile $INTEGRATION_DIR/images