8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2242f4c commit 6d8161aCopy full SHA for 6d8161a
.circleci/config.yml
@@ -65,6 +65,21 @@ jobs:
65
path: ~/log.txt
66
destination: log.txt
67
68
+ pypy3:
69
+ docker:
70
+ - image: pypy:3-6.0.0
71
+ steps:
72
+ - restore_cache:
73
+ keys:
74
+ - pypy3-ccache-{{ .Branch }}
75
+ - pypy3-ccache
76
+ - checkout
77
+ - run: ./build_tools/circle/build_test_pypy.sh
78
+ - save_cache:
79
+ key: pypy3-ccache-{{ .Branch }}-{{ .BuildNum }}
80
+ paths:
81
+ - ~/.ccache
82
+ - ~/.cache/pip
83
84
deploy:
85
docker:
@@ -89,6 +104,7 @@ workflows:
89
104
jobs:
90
105
- python3
91
106
- python2
107
+ - pypy3
92
108
- deploy:
93
109
requires:
94
110
0 commit comments