Skip to content
Snippets Groups Projects
Commit 00efddf1 authored by Alexander Olofsson's avatar Alexander Olofsson
Browse files

Merge branch 'pdk-fixes' into 'master'

Lock rexml for PDK 3.2.0

See merge request puppet-infra/shared-ci-piplines!69
parents 6227cb24 268217dc
Branches
No related tags found
No related merge requests found
......@@ -30,8 +30,13 @@ pdk-validate:
touch Gemfile Gemfile.local
# For PDK 3.2.0
if [ "$PDK_VERSION" == "3.2.0" ]; then
echo "Locking rexml to 3.2.5"
sed -e '/"rexml"/d' -e "/'rexml'/d" -i Gemfile Gemfile.local
echo 'gem "rexml", "= 3.2.5"' >> Gemfile.local
# For PDK 3.0.1
if [ "$PDK_VERSION" == "3.0.1" ]; then
elif [ "$PDK_VERSION" == "3.0.1" ]; then
echo "Locking puppet_litmus to 1.2.1"
sed -e '/"puppet_litmus"/d' -e "/'puppet_litmus'/d" -i Gemfile Gemfile.local
echo 'gem "puppet_litmus", "= 1.2.1"' >> Gemfile.local
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment