Permalink
Cannot retrieve contributors at this time
29 lines (27 sloc)
744 Bytes
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?
heroku-buildpack-ruby/.circleci/config.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |