Sha256: be3d8b3bac12dc0c9d0e884e929bbcf7af1f6aea9222db9eaf6696a8bd13b796

Contents?: true

Size: 1.25 KB

Versions: 9

Compression:

Stored size: 1.25 KB

Contents

version: 2
references:
  unit: &unit
    run:
      name: Run test suite
      command: bundle exec rake
  restore: &restore
    restore_cache:
      keys:
        - v1-dependencies-{{ checksum "Gemfile.lock" }}
        # fallback to using the latest cache if no exact match is found
        - v1-dependencies-
  bundle: &bundle
    run:
      name: install dependencies
      command: |
        bundle install --jobs=4 --retry=3 --path vendor/bundle
  save: &save
    save_cache:
      paths:
        - ./vendor/bundle
      key: v1-dependencies-{{ checksum "Gemfile.lock" }}
jobs:
  "ruby-2.5":
    docker:
      - image: circleci/ruby:2.5
      - image: circleci/redis:4.0
    steps:
      - checkout
      - <<: *restore
      - <<: *bundle
      - <<: *save
      - <<: *unit
  "ruby-2.6":
    docker:
      - image: circleci/ruby:2.6
      - image: circleci/redis:4.0
    steps:
      - checkout
      - <<: *restore
      - <<: *bundle
      - <<: *save
      - <<: *unit
  "jruby":
    docker:
      - image: circleci/jruby:latest
      - image: circleci/redis:4.0
    steps:
      - checkout
      - <<: *restore
      - <<: *bundle
      - <<: *save
      - <<: *unit

workflows:
  version: 2
  build:
    jobs:
      - "ruby-2.5"
      - "ruby-2.6"
      - "jruby"

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
sidekiq-5.2.10 .circleci/config.yml
sidekiq-5.2.9 .circleci/config.yml
sidekiq-6.0.5 .circleci/config.yml
sidekiq-5.2.8 .circleci/config.yml
sidekiq_cleaner-5.3.8 .circleci/config.yml
sidekiq-6.0.0 .circleci/config.yml
sidekiq_cleaner-5.3.6 .circleci/config.yml
sidekiq-6.0.0.pre1 .circleci/config.yml
sidekiq-5.2.7 .circleci/config.yml