forked from gevent/gevent
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
49 lines (40 loc) · 1.03 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
# .travis.yml based on https://github.com/DRMacIver/hypothesis/blob/master/.travis.yml
language: python
sudo: false
python:
- 3.7-dev
env:
global:
- BUILD_RUNTIMES=$HOME/.runtimes
- CC="ccache gcc"
- CCACHE_NOCPP2=true
- CCACHE_SLOPPINESS=file_macro,time_macros,include_file_ctime,include_file_mtime
- CCACHE_NOHASHDIR=true
- CFLAGS="-Ofast -pipe -fomit-frame-pointer -march=native"
- PYTHONHASHSEED=random
matrix:
# These are ordered to get as much diversity in the
# first group of parallel runs (4) as posible
- TASK=test-py37
- TASK=test-py27
- TASK=test-pypy
- TASK=test-py36
- TASK=test-py27-noembed
- TASK=test-pypy3
- TASK=test-py35
- TASK=test-py34
matrix:
fast_finish: true
script:
- make $TASK
notifications:
email: false
cache:
pip: true
directories:
- $HOME/.venv
- $HOME/.runtimes
- $HOME/.wheelhouse
- $HOME/.ccache
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log