-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bundler install picks up wrong Gemfile #53
Comments
seems this is because Bundler.with_clean_env doesn't actually clean the environment: Output of env includes (which it shouldn't): |
Duplicate of #51, and rubygems/bundler#900, which I have an open pull request (rubygems/bundler#1057) to fix.
|
We have tried resolving #44 in the |
Also: RAILS_ENV is cleared within steps so one has to explicitly set it in test (for example with "env RAILS_ENV=test command_to_run") |
Since updating to 0.1.3, all builds fail because running "bundle install --path=%project_dir%/bundle --deployment" now somehow picks up bigtuna's Gemfile instead of the project's Gemfile. As a result, the project is missing the .bundle directory.
As a workaround for that I'm using: "bundle install --gemfile=%build_dir%/Gemfile --path=%project_dir%/bundle --deployment"
The text was updated successfully, but these errors were encountered: