2020-12-17 10:03:54 -05:00
|
|
|
name: Validate PyPy e2e
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
schedule:
|
|
|
|
- cron: 30 3 * * *
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
setup-pypy:
|
|
|
|
name: Setup PyPy ${{ matrix.pypy }} ${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-04-12 13:59:38 -04:00
|
|
|
os: [macos-latest, windows-latest, ubuntu-18.04, ubuntu-latest]
|
2020-12-17 10:03:54 -05:00
|
|
|
pypy:
|
|
|
|
- 'pypy-2.7'
|
|
|
|
- 'pypy-3.7'
|
2022-05-18 09:20:53 -04:00
|
|
|
- 'pypy3.9'
|
2021-10-19 13:24:02 -04:00
|
|
|
- 'pypy-2.7-v7.3.4'
|
|
|
|
- 'pypy-3.7-v7.3.5'
|
|
|
|
- 'pypy-3.7-v7.3.4'
|
|
|
|
- 'pypy-3.7-v7.3.x'
|
2020-12-17 10:03:54 -05:00
|
|
|
- 'pypy-3.7-v7.x'
|
2021-04-12 13:59:38 -04:00
|
|
|
- 'pypy-2.7-v7.3.4rc1'
|
2020-12-17 10:03:54 -05:00
|
|
|
- 'pypy-3.7-nightly'
|
2022-05-18 09:20:53 -04:00
|
|
|
- 'pypy3.8-v7.3.7'
|
2020-12-17 10:03:54 -05:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: setup-python ${{ matrix.pypy }}
|
2022-05-23 14:59:37 -04:00
|
|
|
id: setup-python
|
2020-12-17 10:03:54 -05:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.pypy }}
|
2022-05-23 14:59:37 -04:00
|
|
|
|
|
|
|
- name: Check python-path
|
|
|
|
run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}'
|
|
|
|
shell: bash
|
|
|
|
|
2020-12-17 10:03:54 -05:00
|
|
|
- name: PyPy and Python version
|
|
|
|
run: python --version
|
|
|
|
|
|
|
|
- name: Run simple code
|
|
|
|
run: python -c 'import math; print(math.factorial(5))'
|
2022-04-28 09:26:17 -04:00
|
|
|
|
|
|
|
- name: Assert PyPy is running
|
|
|
|
run: |
|
|
|
|
import platform
|
|
|
|
assert platform.python_implementation().lower() == "pypy"
|
|
|
|
shell: python
|
|
|
|
|
|
|
|
- name: Assert expected binaries (or symlinks) are present
|
|
|
|
run: |
|
|
|
|
EXECUTABLE=${{ matrix.pypy }}
|
2022-05-18 09:20:53 -04:00
|
|
|
EXECUTABLE=${EXECUTABLE/pypy-/pypy} # remove the first '-' in "pypy-X.Y" -> "pypyX.Y" to match executable name
|
2022-04-28 09:26:17 -04:00
|
|
|
EXECUTABLE=${EXECUTABLE%%-*} # remove any -* suffixe
|
|
|
|
${EXECUTABLE} --version
|
|
|
|
shell: bash
|