aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml90
1 files changed, 0 insertions, 90 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 389d3372..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,90 +0,0 @@
-dist: xenial
-language: python
-python: 3.6
-
-env:
- global:
- - TWINE_USERNAME="anthrotype"
- - secure: PJuCmlDuwnojiw3QuDhfNAaU4f/yeJcEcRzJAudA66bwZK7hvxV7Tiy9A17Bm6yO0HbJmmyjsIr8h2e7/PyY6QCaV8RqcMDkQ0UraU16pRsihp0giVXJoWscj2sCP4cNDOBVwSaGAX8yZ2OONc5srESywghzcy8xmgw6O+XFqx4=
-
-branches:
- only:
- - master
- # We want to build wip/* branches since these are not usually used for PRs
- - /^wip\/.*$/
- # We want to build version tags as well.
- - /^\d+\.\d+.*$/
-
-matrix:
- fast_finish: true
- include:
- - python: 3.6
- env:
- - TOXENV=mypy
- - python: 3.6
- env:
- - TOXENV=py36-cov,package_readme
- - BUILD_DIST=true
- - python: 3.7
- env: TOXENV=py37-cov
- - python: 3.8
- env: TOXENV=py38-cov
- - python: 3.8
- env: TOXENV=py38-cy
- - python: pypy3
- # disable coverage.py on pypy because of performance problems
- env: TOXENV=pypy3
- dist: xenial
- - language: generic
- os: osx
- env:
- - TOXENV=py3-cov
- - HOMEBREW_NO_AUTO_UPDATE=1
- allow_failures:
- # We use fast_finish + allow_failures because OSX builds take forever
- # https://blog.travis-ci.com/2013-11-27-fast-finishing-builds
- - language: generic
- os: osx
- env:
- - TOXENV=py3-cov
- - HOMEBREW_NO_AUTO_UPDATE=1
-
-cache:
- - pip
- - directories:
- - $HOME/.pyenv_cache
-
-addons:
- apt:
- packages:
- - language-pack-de
-
-before_install:
- - source ./.travis/before_install.sh
-
-install:
- - ./.travis/install.sh
-
-script:
- - ./.travis/run.sh
-
-after_success:
- - ./.travis/after_success.sh
-
-notifications:
- irc: "irc.freenode.org##fonts"
- email: fonttools-dev@googlegroups.com
-
-deploy:
- # deploy to Github Releases on tags
- - provider: releases
- api_key:
- secure: KEcWhJxMcnKay7wmWJCpg2W5GWHTQ+LaRbqGM11IKGcQuEOFxWuG7W1xjGpVdKPj/MQ+cG0b9hGUFpls1hwseOA1HANMv4xjCgYkuvT1OdpX/KOcZ7gfe/qaovzVxHyP9xwohnHSJMb790t37fmDfFUSROx3iEexIX09LLoDjO8=
- skip_cleanup: true
- file_glob: true
- file: "dist/*"
- on:
- tags: true
- repo: fonttools/fonttools
- all_branches: true
- condition: "$BUILD_DIST == true"