I use a private gem in an application, which is located at a private gem server.
There is no access to that gem server outside of VPC.
In my Gemfile
I put the private gem inside a custom group:
group :private do
source 'http://private-server-address' do
gem 'private-gem'
end
end
I added these lines into circle.yml
file to tell cicleci bundler to ignore my private gem:
dependencies:
bundler:
without: [production, staging, private]
But the problem is circleci runs bundle check
and right after that just bundle install
without any options.
Is it possible to disable bundle check
? I couldn't find any info in the documentation.