blob: be99d473c9bc5c51143115fad2f2c5a22f81f729 (
plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
sudo: true
dist: bionic
language: python
cache:
directories:
- $HOME/.cache/pip
- $HOME/ossl-2/
# Only build master, the version branches (e.g. 1.7.x), and
# version tags (which are apparently considered branches by travis)
branches:
only:
- master
- /\d+\.\d+\.x/
- /\d+\.\d+(\.\d+)?/
matrix:
include:
- python: 3.8
env: TOXENV=pep8
# Setting 'python' is just to make travis's UI a bit prettier
- python: 3.6
env: TOXENV=py36
- python: 3.8
env: TOXENV=py38-idna
- python: pypy2.7-7.1.1
# I don't know how to enumerate pypy versions in Travis other than to look at
# https://github.com/travis-ci/travis-nightly-builder/blob/build/Rakefile#L74-L106
env: TOXENV=pypy-nocoverage
dist: xenial
- python: pypy3.5-7.0
env: TOXENV=pypy3-nocoverage
dist: xenial
- python: 2.7
env: TOXENV=py27 OPENSSL=1.1.0l
- python: 3.8
env: TOXENV=py38 OPENSSL=1.1.0l
- python: 2.7
env: TOXENV=py27 OPENSSL=1.1.1g
- python: 3.8
env: TOXENV=py38 OPENSSL=1.1.1g
- python: 3.8
env: TOXENV=py38 OPENSSL=1.1.1g OPENSSL_CONFIG_FLAGS="no-engine no-rc2"
- python: 3.8
env: TOXENV=py38 LIBRESSL=2.9.2
- python: 3.8
env: TOXENV=py38 LIBRESSL=3.0.2
- python: 3.8
env: TOXENV=py38 LIBRESSL=3.1.0
- python: 2.7
services: docker
env: TOXENV=py27 DOCKER=pyca/cryptography-runner-centos7
- python: 2.7
services: docker
env: TOXENV=py27 DOCKER=pyca/cryptography-runner-stretch
- python: 3.5
services: docker
env: TOXENV=py35 DOCKER=pyca/cryptography-runner-stretch
- python: 3.7
services: docker
env: TOXENV=py37 DOCKER=pyca/cryptography-runner-buster
- python: 3.8
services: docker
env: TOXENV=py38 DOCKER=pyca/cryptography-runner-bullseye
- python: 3.8
services: docker
env: TOXENV=py38 DOCKER=pyca/cryptography-runner-sid
- python: 2.7
services: docker
env: TOXENV=py27 DOCKER=pyca/cryptography-runner-ubuntu-rolling
- python: 3.8
services: docker
env: TOXENV=py38 DOCKER=pyca/cryptography-runner-ubuntu-rolling
- python: 3.8
services: docker
env: TOXENV=py38-randomorder DOCKER=pyca/cryptography-runner-ubuntu-rolling
- python: 3.7
services: docker
env: TOXENV=py37 DOCKER=pyca/cryptography-runner-fedora
- python: 3.8
services: docker
env: TOXENV=py38 DOCKER=pyca/cryptography-runner-alpine:latest
- python: 3.8
env: TOXENV=docs OPENSSL=1.1.1g
addons:
apt:
packages:
- libenchant-dev
- python: 2.7
services: docker
env: TOXENV=docs-linkcheck DOCKER=pyca/cryptography-runner-buster
if: (branch = master AND type != pull_request) OR commit_message =~ /linkcheck/
- python: 3.8
env: TOXENV=packaging
- python: 2.7
env: DOWNSTREAM=pyopenssl
- python: 3.7
env: DOWNSTREAM=twisted OPENSSL=1.1.1g
- python: 2.7
env: DOWNSTREAM=paramiko
- python: 2.7
env: DOWNSTREAM=aws-encryption-sdk
- python: 2.7
# BOTO_CONFIG works around this boto issue on travis:
# https://github.com/boto/boto/issues/3717
env: DOWNSTREAM=dynamodb-encryption-sdk BOTO_CONFIG=/dev/null
- python: 2.7
env: DOWNSTREAM=certbot
- python: 2.7
env: DOWNSTREAM=certbot-josepy
- python: 2.7
env: DOWNSTREAM=urllib3
# Tests hangs when run under bionic
dist: xenial
install:
- ./.travis/install.sh
script:
- ./.travis/run.sh
after_success:
- ./.travis/upload_coverage.sh
notifications:
irc:
channels:
# This is set to a secure variable to prevent forks from notifying the
# IRC channel whenever they fail a build. This can be removed when travis
# implements https://github.com/travis-ci/travis-ci/issues/1094.
# The value encrypted here was created via
# travis encrypt "irc.freenode.org#cryptography-dev"
- secure: "A93qvTOlwlMK5WoEvZQ5jQ8Z4Hd0JpeO53WYt8iIJ3s/L6AubkfiN7gwhThRtPnPx7DVMenoKRMlcRg76/ICvXEViVnGgXFjsypF0CzVcIay9pPdjpZjZHP735yLfX512RtxYEdEGwi5r25Z2CEFaydhhxNwfuMxGBtLUjusix4="
use_notice: true
skip_join: true
|