.travis.yml 470 字节
Newer Older
L
Luo Tao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
language: cpp
cache: ccache
sudo: required
dist: trusty
os:
  - linux
env:
  - JOB=PRE_COMMIT

addons:
  apt:
    packages:
      - git
      - python
      - python-pip
      - python2.7-dev
G
gongweibao 已提交
17
      - golang
L
Luo Tao 已提交
18
before_install:
Y
Yu Yang 已提交
19
  -  pip install -U virtualenv pre-commit pip
G
gongweibao 已提交
20
  -  GOPATH=/tmp/go go get -u github.com/wangkuiyi/ipynb/markdown-to-ipynb
L
Luo Tao 已提交
21
script:
Y
Yu Yang 已提交
22
  -  PATH=/tmp/go/bin:$PATH travis/precommit.sh
L
Luo Tao 已提交
23 24 25 26
notifications:
  email:
    on_success: change
    on_failure: always