Sha256: fd5f123e55a990c565e042fd4c15d09fd0f677235109f4d9a2a6a4bd43c193d3

Contents?: true

Size: 942 Bytes

Versions: 2

Compression:

Stored size: 942 Bytes

Contents

language: ruby
cache: bundler
stages:
- unit
- name: integration
  if: type IN (api, cron)
jobs:
  include:
  - stage: unit
    name: unit tests
    script: bundle exec rake test:unit
    rvm:
    - 2.3
    - jruby-9.1.7
  - stage: unit
    name: pronto code review
    script: |
      git remote add upstream https://github.com/gooddata/gooddata-ruby.git
      git fetch upstream master
      bundle exec pronto run -c upstream/master --exit-code
  - stage: integration
    name: lcm integration tests
    script: |
      bundle exec rake -f lcm.rake docker:build
      bundle exec rake -f lcm.rake docker:bundle
      bundle exec rake -f lcm.rake test:integration:docker
    rvm:
    - jruby-9.1.7
  - stage: integration
    name: sdk integration tests
    script: bundle exec rake test:sdk
    rvm: jruby-9.1.7
  - stage: integration
    name: sdk integration tests (project)
    script: bundle exec rake test:project
    rvm: jruby-9.1.7

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gooddata-1.3.2-java .travis.yml
gooddata-1.3.2 .travis.yml