Sha256: 4348c883e47cb2579d3ed25a8b18cac8e41210860a46a1f79be928a441880917

Contents?: true

Size: 1.64 KB

Versions: 5

Compression:

Stored size: 1.64 KB

Contents

version: 2

jobs:
  ruby-2.5.8:
    docker:
      - image: circleci/ruby:2.5.8
    steps:
      - checkout
      - run: rm Gemfile.lock
      - run: rm .ruby-version
      - run: bundle install
      - run: bundle exec appraisal install || true
      - run: bundle exec appraisal rake
      - run: bundle exec standardrb
      - run: bundle exec mdl README.md CHANGELOG.md TODO.md
  ruby-2.6.6:
    docker:
      - image: circleci/ruby:2.6.6
    steps:
      - checkout
      - run: rm Gemfile.lock
      - run: rm .ruby-version
      - run: bundle install
      - run: bundle exec appraisal install || true
      - run: bundle exec appraisal rake
      - run: bundle exec standardrb
      - run: bundle exec mdl README.md CHANGELOG.md TODO.md
  ruby-2.7.1:
    docker:
      - image: circleci/ruby:2.7.1
    steps:
      - checkout
      - run: rm Gemfile.lock
      - run: rm .ruby-version
      - run: bundle install
      - run: bundle exec appraisal install || true
      - run: bundle exec appraisal rake
      - run: bundle exec standardrb
      - run: bundle exec mdl README.md CHANGELOG.md TODO.md
  jruby-9.2.11.1:
    docker:
      - image: circleci/jruby:9.2.11.1
    environment:
      JRUBY_OPTS: "--debug -J-Xmn1024m -J-Xms2048m -J-Xmx2048m"
    steps:
      - checkout
      - run: rm Gemfile.lock
      - run: rm .ruby-version
      - run: bundle install
      - run: bundle exec appraisal install || true
      - run: bundle exec appraisal rake
      - run: bundle exec standardrb
      - run: bundle exec mdl README.md CHANGELOG.md TODO.md

workflows:
  version: 2
  tests:
    jobs:
      - jruby-9.2.11.1
      - ruby-2.5.8
      - ruby-2.6.6
      - ruby-2.7.1

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
eve_online-0.35.1 .circleci/config.yml
eve_online-0.35.0 .circleci/config.yml
eve_online-0.34.0 .circleci/config.yml
eve_online-0.33.0 .circleci/config.yml
eve_online-0.32.0 .circleci/config.yml