circle.yml in netsuite-0.8.6 vs circle.yml in netsuite-0.8.7
- old
+ new
@@ -1,11 +1,11 @@
version: 2.1
orbs:
# orbs are basically bundles of pre-written build scripts that work for common cases
# https://github.com/CircleCI-Public/ruby-orb
- ruby: circleci/ruby@1.1
+ ruby: circleci/ruby@1.1.2
jobs:
# skipping build step because Gemfile.lock is not included in the source
# this makes the bundler caching step a noop
test:
@@ -15,11 +15,14 @@
docker:
- image: cimg/ruby:<< parameters.ruby-version >>
steps:
- checkout
- ruby/install-deps:
- bundler-version: '1.17.2'
+ bundler-version: '2.1.4'
with-cache: false
+ # without specifying a non-standard path `--deployment` will be used when running bundler
+ # which causes the bundler to fail
+ path: './vendor/custom_bundle'
- ruby/rspec-test
# strangely, there seems to be very little documentation about exactly how martix builds work.
# By defining a param inside your job definition, Circle CI will automatically spawn a job for
# unique param value passed via `matrix`. Neat!
\ No newline at end of file