mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 13:33:09 +00:00
cfe7033568
There are no longer any macOS jobs. Delete the macOS checks. There are no longer any coverage jobs. Delete codecov hook. There are no longer any pyinstaller jobs. Delete extra pyinstaller check.
41 lines
790 B
YAML
41 lines
790 B
YAML
sudo: false
|
|
language: python
|
|
cache: pip
|
|
dist: xenial
|
|
before_cache:
|
|
- rm -f $HOME/.cache/pip/log/debug.log
|
|
git:
|
|
depth: 1000
|
|
|
|
env:
|
|
global:
|
|
- TAHOE_LAFS_HYPOTHESIS_PROFILE=ci
|
|
|
|
install:
|
|
- pip install --upgrade tox setuptools virtualenv
|
|
- echo $PATH; which python; which pip; which tox
|
|
- python misc/build_helpers/show-tool-versions.py
|
|
|
|
script:
|
|
- |
|
|
set -eo pipefail
|
|
tox -e ${T}
|
|
|
|
notifications:
|
|
email: false
|
|
irc:
|
|
channels: "chat.freenode.net#tahoe-lafs"
|
|
on_success: always # for testing
|
|
on_failure: always
|
|
template:
|
|
- "%{repository}#%{build_number} [%{branch}: %{commit} by %{author}] %{message}"
|
|
- "Changes: %{compare_url} | Details: %{build_url}"
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
python: '3.6'
|
|
env: T=py36
|
|
|
|
fast_finish: true
|