https://github.com/chainer/chainer
Raw File
Tip revision: a8e15cbe55a90854a3918b8b5a976abbbff9ec94 authored by emcastillo on 17 October 2022, 02:18:00 UTC
Merge pull request #8628 from chainer/maintenance-policy
Tip revision: a8e15cb
.travis.yml
language: python

cache:
  - pip
  - ccache

matrix:
  include:
    - name: "Python Static Check"
      dist: xenial
      python: "3.5"
      env:
      - CHAINER_TRAVIS_TEST="python-static-check"
      if: type in (pull_request)

    - name: "C++ Static Check"
      language: python
      dist: xenial
      python: "3.5"
      env:
      - CHAINER_TRAVIS_TEST="c-static-check"
      if: type in (pull_request)

    - name: "Ubuntu16.04 Py35 | chainer, chainermn, chainerx, docs"
      dist: xenial
      python: "3.5"
      env:
      - CHAINER_TRAVIS_TEST="chainer"
      - MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
      - GOROOT=$HOME/go
      if: type in (pull_request)

    - name: "Examples"
      language: python
      dist: xenial
      python: "3.5"
      env:
      - CHAINER_TRAVIS_TEST="examples"
      - GOROOT=$HOME/go

before_install:
  - bash scripts/ci/travis/run-tests.sh before_install

install:
  - travis_wait bash scripts/ci/travis/run-tests.sh install

script:
  - bash scripts/ci/travis/run-tests.sh script

addons:
  apt:
    update: true
    packages:
      - moreutils  # for ts
  homebrew:
    update: true
    packages:
      - moreutils  # for ts
back to top