Sha256: 3f1a5ebaec5bdec684c1e5332ad750a5de3d74552a2562a07e3d2a56ff4851c8

Contents?: true

Size: 922 Bytes

Versions: 4

Compression:

Stored size: 922 Bytes

Contents

aliases:
  - &step_cache_restore_deps
    restore_cache:
      keys:
        - drivy-rails-fluent-plugin-heroku-syslog-http-{{ .Branch }}-{{ .Revision }}
        - drivy-rails-fluent-plugin-heroku-syslog-http-{{ .Branch }}
        - drivy-rails-fluent-plugin-heroku-syslog-http-
  - &step_cache_save_deps
    save_cache:
      key: drivy-rails-fluent-plugin-heroku-syslog-http-{{ .Branch }}-{{ .Revision }}
      paths: [ vendor/bundle ]
  - &step_bundler_install_deps
    run: bundle install --path vendor/bundle --jobs=2 --without development:deployment

version: 2
jobs:
  test:
    docker:
      - image: circleci/ruby:2.4
    steps:
      - checkout
      - *step_cache_restore_deps
      # Bundler install
      - *step_bundler_install_deps
      - run: bundle clean
      - *step_cache_save_deps
      # Run tests
      - run: bundle exec rake

workflows:
  version: 2

  test-and-deploy:
    jobs:
      - checkout

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fluent-plugin-heroku-syslog-http-0.2.4 .circleci/config.yml
fluent-plugin-heroku-syslog-http-0.2.2 .circleci/config.yml
fluent-plugin-heroku-syslog-http-0.2.1 .circleci/config.yml
fluent-plugin-heroku-syslog-http-0.2.0 .circleci/config.yml