加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
DC* 提交于 2019-12-22 12:19 . Add newer zsh versions to CI (#693)
sudo: required
dist: trusty
language: generic
services:
- docker
cache:
pip: true
env:
global:
- USE_CONTAINER=docker
matrix:
include:
- os: linux
env: ZSH_VERSION=zsh-5.7
- os: linux
env: ZSH_VERSION=zsh-5.6
- os: linux
env: ZSH_VERSION=zsh-5.5
- os: linux
env: ZSH_VERSION=zsh-5.4.2
- os: linux
env: ZSH_VERSION=zsh-5.4.1
- os: linux
env: ZSH_VERSION=zsh-5.4
- os: linux
env: ZSH_VERSION=zsh-5.3.1
- os: linux
env: ZSH_VERSION=zsh-5.3
- os: linux
env: ZSH_VERSION=zsh-5.2
- os: linux
env: ZSH_VERSION=zsh-5.1.1
- os: linux
env: ZSH_VERSION=zsh-5.0.0
- os: linux
env: ZSH_VERSION=zsh-4.3.17
- os: linux
env: ZSH_VERSION=zsh-4.3.11
notifications:
webhooks:
urls:
- "https://webhooks.gitter.im/e/30fdb3abe241aa03af20"
on_success: always
on_failure: always
on_start: always
script:
- if [ $TRAVIS_OS_NAME == 'osx' ]; then brew install zsh; pip install cram; fi
- make info tests stats USE_CONTAINER=$USE_CONTAINER
# Ensure the checked-in build matches the build produced in CI. Since the CI
# will run this on both OS X and Linux, the two platforms must also produce
# the same build, else one of them will fail.
- SHASUM=$(shasum -a 256 ./bin/antigen.zsh)
- VERSION=$(cat ./VERSION) make USE_CONTAINER=$USE_CONTAINER
- SHACHECK=$(shasum -a 256 ./bin/antigen.zsh)
- echo -e "$SHASUM\n$SHACHECK"
- test "$SHASUM" == "$SHACHECK"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化