summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-05-29 13:11:04 +0000
committerBundlerbot <bot@bundler.io>2019-05-29 13:11:04 +0000
commit685208e53764d78e746755ffe02618970dcd9a08 (patch)
tree58ac4b569c927b5d6e22c849c96fd015fee3e7e1
parent9a39d31a6bf3c3cbfda5a6617ab0f23e0ae689f9 (diff)
parente43417176140b6d9603c2f471804d05dd37a594c (diff)
downloadbundler-685208e53764d78e746755ffe02618970dcd9a08.tar.gz
Merge #7186
7186: Fix azure CI issue r=deivid-rodriguez a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was that Azure CI is now failing. ### What was your diagnosis of the problem? My diagnosis was that the ruby version was upgraded, and as a consequence, a hardcoded path in our configuration no longer exists. ### What is your fix for the problem, implemented in this PR? My fix is to update the path and to be more explicit about the ruby version we want to use, so that this doesn't happen again. ### Why did you choose this fix out of the possible options? I chose this fix because it fixes the problem, and prevents it from happening in the future. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
-rw-r--r--.azure-pipelines/steps.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.azure-pipelines/steps.yml b/.azure-pipelines/steps.yml
index bb989ac70c..fc644a90a1 100644
--- a/.azure-pipelines/steps.yml
+++ b/.azure-pipelines/steps.yml
@@ -2,7 +2,7 @@ steps:
- task: UseRubyVersion@0
inputs:
- versionSpec: '= 2.4'
+ versionSpec: '= 2.4.5'
- script: |
ruby -v
@@ -16,7 +16,7 @@ steps:
displayName: 'work around readline crash (for https://github.com/bundler/bundler/issues/6902)'
- script: |
- git apply --ignore-space-change --ignore-whitespace .azure-pipelines\rbreadline.diff --directory=C:/hostedtoolcache/windows/Ruby/2.4.3/x64/lib/ruby/site_ruby --unsafe-paths
+ git apply --ignore-space-change --ignore-whitespace .azure-pipelines\rbreadline.diff --directory=C:/hostedtoolcache/windows/Ruby/2.4.5/x64/lib/ruby/site_ruby --unsafe-paths
displayName: 'patch local readline implementation (for https://github.com/bundler/bundler/issues/6907)'
- script: |