Skip to content
Permalink
ff7927dc5f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
29 lines (27 sloc) 744 Bytes
version: 2.1
orbs:
buildpacks: jkutner/buildpacks@0.1.0
ruby: circleci/ruby@0.2.1
jobs:
build:
machine: true
steps:
- buildpacks/install-pack:
version: "0.11.0"
- checkout
- run:
command: |
rvm install 2.6.6
rvm use ruby-2.6.6
export PATH="/opt/circleci/.rvm/rubies/ruby-2.6.6/bin:$PATH"
export GEM_HOME="/opt/circleci/.rvm/gems/ruby-2.6.6"
export GEM_PATH="/opt/circleci/.rvm/gems/ruby-2.6.6"
gem install bundler -v 2.1.0
bundle install
bundle exec rake hatchet:setup_ci
echo "pack version: $(pack --version)"
rspec spec/cnb/
workflows:
main:
jobs:
- build