- 在线的
- 分布式
- 持续集成
- 构建及测试
- Github 项目
- 支持多种语言
- 开源的
使用 Github 账号登陆
在这里进入你的 profile 中激活 Github Repo
在这里
将 .travis.yml commit & push 到 Repo 中
- commit & push
- GITHUB Repo Setting -> Webhooks & Services -> Travis CI -> Test Services
language: node_js
node_js:
- "5.11"
before_script:
- npm install
script:
- npm start
针对 NodeJS 类型的项目
指定语言/指定版本/在运行script
之前做什么/运行script
language: python
python:
- "2.7"
install: "pip install -r requirements.txt"
script: "python main.js"
同上