From cdccbeecb7c354d1f35534b17779a03d8d7cb2fe Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Mon, 13 Jun 2022 01:58:11 +0900 Subject: [PATCH] train-only: Pin multipart-post multipart-post 2.2.0 requies ruby >= 2.3.0 . Pin the package to avoid failures with old ruby used in CI. Depends-on: https://review.opendev.org/845080 Change-Id: I25df15ac5b5b2be3bc9f5855389a4d1816c97a2d --- install_modules.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install_modules.sh b/install_modules.sh index 2e6e53905..b423045ee 100755 --- a/install_modules.sh +++ b/install_modules.sh @@ -31,6 +31,8 @@ print_header 'Install r10k' $GEM_INSTALL_CMD fast_gettext -v '< 1.2.0' # gettext 3.3.0+ requires ruby 2.5.0 $GEM_INSTALL_CMD gettext -v '< 3.3.0' +# multipart-post 2.2.0 requires ruby 2.3.0 +$GEM_INSTALL_CMD multipart-post -v '< 2.2.0' # puppet_forge 2.2.7 has a dependency on semantic_puppet ~> 1.0 # which is not compatible with dependency of latest r10k on semantic_puppet ~> 0.1.0 $GEM_INSTALL_CMD puppet_forge -v '= 2.2.6'