加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
Kenichi Maehashi 提交于 2021-02-16 04:26 . remove travis for macOS
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化