I am facing issue while using pipeline for ruby script. I have file the issue in bitbucket also, Issue #15542 https://bitbucket.org/site/master/issues/15542/pipeline-script-bundle-install-could-not1
Kindly find the pipeline configuration. getting error “Could not locate Gemfile”.
image: ruby:2.4.0 pipelines: default: - step: script: - ruby - v - bundle install
Also asked question of community also https://community.developer.atlassian.com/t/how-to-use-this-ruby-docker-image/13806
Kindly help me with this issue,
Hi Tushar,
Do you have a Gemfile in the root directory of your repository?
If not, you'll need to change directory and then run your installation command. For example:
image: ruby:2.4.0 pipelines: default: - step: script: - ruby - v
- cd app - bundle install
Hope this helps!
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.