Skip to content

Commit 6fc4c8e

Browse files
p-datadogpivoanjo
authored
Update integrations images build script (DataDog#4243)
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). Co-authored-by: Oleg Pudeyev <[email protected]> Co-authored-by: Ivo Anjo <[email protected]>
1 parent 99d04ef commit 6fc4c8e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

integration/script/build-images

+1-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ while getopts ":hv:" opt; do
1414
echo "Usage: ./script/build-images [-v RUBY_VERSION]"
1515
echo
1616
echo "If no Ruby version is specified, images are built for each of the"
17-
echo "supported versions (currently 2.1 through 3.3)."
17+
echo "supported versions (currently 2.5 through 3.4)."
1818
exit 0
1919
;;
2020
v)
@@ -39,10 +39,6 @@ docker build -t datadog/dd-apm-demo:agent -f $INTEGRATION_DIR/images/agent/Docke
3939
if test -n "$APP_RUBY_VERSION"; then
4040
docker build -t datadog/dd-apm-demo:rb-$APP_RUBY_VERSION -f $INTEGRATION_DIR/images/ruby/$APP_RUBY_VERSION/Dockerfile $INTEGRATION_DIR/images
4141
else
42-
docker build -t datadog/dd-apm-demo:rb-2.1 -f $INTEGRATION_DIR/images/ruby/2.1/Dockerfile $INTEGRATION_DIR/images
43-
docker build -t datadog/dd-apm-demo:rb-2.2 -f $INTEGRATION_DIR/images/ruby/2.2/Dockerfile $INTEGRATION_DIR/images
44-
docker build -t datadog/dd-apm-demo:rb-2.3 -f $INTEGRATION_DIR/images/ruby/2.3/Dockerfile $INTEGRATION_DIR/images
45-
docker build -t datadog/dd-apm-demo:rb-2.4 -f $INTEGRATION_DIR/images/ruby/2.4/Dockerfile $INTEGRATION_DIR/images
4642
docker build -t datadog/dd-apm-demo:rb-2.5 -f $INTEGRATION_DIR/images/ruby/2.5/Dockerfile $INTEGRATION_DIR/images
4743
docker build -t datadog/dd-apm-demo:rb-2.6 -f $INTEGRATION_DIR/images/ruby/2.6/Dockerfile $INTEGRATION_DIR/images
4844
docker build -t datadog/dd-apm-demo:rb-2.7 -f $INTEGRATION_DIR/images/ruby/2.7/Dockerfile $INTEGRATION_DIR/images

0 commit comments

Comments
 (0)