Sha256: 2da1a2482add858028813599c639b66250c0720b549a8e5150a21aa7d3bc4518

Contents?: true

Size: 2 KB

Versions: 2

Compression:

Stored size: 2 KB

Contents

install: ./script/bootstrap

matrix:
  include:
    # lint and build
    - language: ruby
      rvm: 2.4.0
      script: bundle exec rake rubocop build
      env: NAME="Lint and Build"

    # go 1.7 tests
    - language: go
      go: "1.7.x"
      before_script: ./script/source-setup/go
      script: ./script/test go
      env: NAME="go"

    # go 1.10 tests
    - language: go
      go: "1.10.x"
      before_script: ./script/source-setup/go
      script: ./script/test go
      env: NAME="go"

    # dep tests
    - language: go
      go: "1.10.x"
      before_script: ./script/source-setup/go
      script: ./script/test dep
      env: NAME="go dep"

    # cabal tests
    - language: haskell
      ghc: "8.2"
      before_script: ./script/source-setup/cabal
      script: ./script/test cabal
      env: NAME="cabal"

    # npm tests
    - language: node_js
      node_js: "8"
      before_script: ./script/source-setup/npm
      script: ./script/test npm
      env: NAME="npm"

    # bower tests
    - language: node_js
      node_js: "8"
      before_script:
        - npm install -g bower
        - ./script/source-setup/bower
      script: ./script/test bower
      env: NAME="bower"

    # bundler tests
    - language: ruby
      rvm: 2.4.0
      before_script: ./script/source-setup/bundler
      script: ./script/test bundler
      env: NAME="bundler"

    # manifest tests
    - language: ruby
      rvm: 2.4.0
      script: ./script/test manifest
      env: NAME="manifest"

    # python 2.7 tests
    - language: python
      python:
        - "2.7"
      before_script: ./script/source-setup/pip
      script: ./script/test pip
      env: NAME="pip"

    # python 3.6 tests
    - language: python
      python:
        - "3.6"
      before_script: ./script/source-setup/pip
      script: ./script/test pip
      env: NAME="pip"

    - language: ruby
      rvm: 2.4.0
      before_script: ./script/source-setup/git_submodule
      script: ./script/test git_submodule
      env: NAME="git_submodule"

notifications:
  disable: true

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
licensed-1.5.1 .travis.yml
licensed-1.4.0 .travis.yml