You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
751 B
32 lines
751 B
4 months ago
|
version: 2
|
||
|
jobs:
|
||
|
py26:
|
||
|
macos:
|
||
|
# macOS 10.12, last version with Python 2.6
|
||
|
xcode: 9.0.1
|
||
|
steps:
|
||
|
- checkout
|
||
|
- run: /usr/bin/python2.6 run.py deps
|
||
|
- run: /usr/bin/python2.6 run.py ci
|
||
|
pypy:
|
||
|
macos:
|
||
|
# macOS 10.14.4
|
||
|
xcode: 10.3.0
|
||
|
steps:
|
||
|
- checkout
|
||
|
- run: curl --location -O https://bitbucket.org/pypy/pypy/downloads/pypy2.7-v7.3.1-osx64.tar.bz2
|
||
|
- run: tar xvf pypy2.7-v7.3.1-osx64.tar.bz2
|
||
|
- run: mv pypy2.7-v7.3.1-osx64 pypy
|
||
|
- run: xattr -rc pypy
|
||
|
- run: ./pypy/bin/pypy -m ensurepip
|
||
|
- run: ./pypy/bin/pypy run.py deps
|
||
|
- run: ./pypy/bin/pypy run.py ci
|
||
|
workflows:
|
||
|
version: 2
|
||
|
python-26:
|
||
|
jobs:
|
||
|
- py26
|
||
|
python-pypy:
|
||
|
jobs:
|
||
|
- pypy
|