加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.travis.yml 964 Bytes
一键复制 编辑 原始数据 按行查看 历史
mbinary 提交于 2019-03-07 10:19 . Update travis
language: python3
sudo: required
python:
- "3.6"
notifications:
email:
recipients:
- zhuheqin1@gmail.com
on_success: change # default: change
on_failure: always # default: always
install:
- sudo apt-get install python3 -y
- sudo apt-get install python3-pip -y
- sudo pip3 install markdown
- sudo pip3 install pypinyin
script:
- python3 utils/genReadme.py
- python3 utils/genIndex.py
after_script:
# Build Master Repository(Coding Pages)
- git config user.name "mbinary"
- git config user.email "zhuheqin1@gmail.com"
- cd docs
- git init
- git remote add origin git@github.com:USTC-Resource/USTC-Course.git
- git add --all
- git commit -m "Travis-CI Update pages with build $TRAVIS_BUILD_NUMBER"
- git push -f "https://${GH_TOKEN}@${GH_REF}" master:gh-pages
addons:
apt:
update: true
branches:
only:
- master
env:
global:
# Github Pages
- GH_REF: github.com/USTC-Resource/USTC-Course
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化