Sha256: abdabf19e44090d14e8ea4564301396a4860d07d52b9b030a4ccaf28b380f2f0

Contents?: true

Size: 1010 Bytes

Versions: 3

Compression:

Stored size: 1010 Bytes

Contents

before_script:
  - ruby -v
  - which ruby
  - apt -qq update -y
  - apt -qq install -y default-jre
  - gem install bundler --no-document
  - bundle install --jobs=$(nproc) --path=deps --quiet
  - bundle clean

test:2.3:
  image: ruby:2.3
  script: bundle exec rake test
  except:
    - tags
  cache:
    key: ruby:2.3
    paths:
      - deps

test:2.4:
  image: ruby:2.4
  script: bundle exec rake test
  except:
    - tags
  cache:
    key: ruby:2.4
    paths:
      - deps

test:2.5:
  image: ruby:2.5
  script: bundle exec rake test
  except:
    - tags
  cache:
    key: ruby:2.5
    paths:
      - deps

test:2.6:
  image: ruby:2.6
  script: bundle exec rake test
  except:
    - tags
  cache:
    key: ruby:2.6
    paths:
      - deps

test:2.7:
  image: ruby:2.7
  script: bundle exec rake test
  except:
    - tags
  cache:
    key: ruby:2.7
    paths:
      - deps

test:3.0:
  image: ruby:3.0-rc
  script: bundle exec rake test
  except:
    - tags
  cache:
    key: ruby:3.0
    paths:
      - deps

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
epub-maker-0.1.7 .gitlab-ci.yml
epub-maker-0.1.6 .gitlab-ci.yml
epub-maker-0.1.5 .gitlab-ci.yml