forked from python-trio/trio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (48 loc) · 1.7 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
os: linux
language: python
dist: focal
jobs:
include:
# The pypy tests are slow, so we list them first
- python: pypy3.6-7.2.0
dist: bionic
- language: generic
env: PYPY_NIGHTLY_BRANCH=py3.6
# Qemu tests are also slow
# FreeBSD:
- language: generic
env:
- "JOB_NAME='FreeBSD 12.1-RELEASE, full VM'"
- "FREEBSD_INSTALLER_ISO_XZ=https://download.freebsd.org/ftp/releases/amd64/amd64/ISO-IMAGES/12.1/FreeBSD-12.1-RELEASE-amd64-disc1.iso.xz"
# Increment this each time you change the image build code in
# ci.sh and want to intentionally bust the cache.
- "CACHE_GEN=3"
cache:
directories:
- travis-cache
# More recent Ubuntu:
# The unique thing this provides is testing on the given distro's
# kernel, which is important when we use new kernel features. This
# is also good for testing the latest openssl etc., and getting
# early warning of any issues that might happen in the next Ubuntu
# LTS.
- language: generic
env:
- "JOB_NAME='Fedora 32, full VM'"
- "LINUX_VM_IMAGE=https://download.fedoraproject.org/pub/fedora/linux/releases/32/Cloud/x86_64/images/Fedora-Cloud-Base-32-1.6.x86_64.qcow2"
- python: 3.6.1 # earliest 3.6 version available on Travis
# https://github.com/pypa/setuptools/issues/2350
env: SETUPTOOLS_USE_DISTUTILS=stdlib
dist: bionic
- python: 3.6-dev
- python: 3.7-dev
- python: 3.8-dev
- python: 3.9-dev
# Temporarily disabled during the high-churn period of 3.10
# E.g.: https://github.com/MagicStack/immutables/issues/46
#- python: nightly
script:
- ./ci.sh
branches:
except:
- /^dependabot/.*/