2020-12-17 22:03:54 +07:00
|
|
|
name: Validate PyPy e2e
|
2022-12-22 16:17:13 +07:00
|
|
|
|
2023-03-09 17:44:56 +07:00
|
|
|
on:
|
2020-12-17 22:03:54 +07:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
schedule:
|
|
|
|
- cron: 30 3 * * *
|
2024-06-28 01:18:32 +07:00
|
|
|
workflow_dispatch:
|
2020-12-17 22:03:54 +07:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
setup-pypy:
|
|
|
|
name: Setup PyPy ${{ matrix.pypy }} ${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-04-04 21:18:24 +07:00
|
|
|
os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-latest]
|
2020-12-17 22:03:54 +07:00
|
|
|
pypy:
|
2023-03-09 17:44:56 +07:00
|
|
|
- 'pypy-2.7'
|
2024-06-28 01:18:32 +07:00
|
|
|
- 'pypy-3.10'
|
2023-03-09 17:44:56 +07:00
|
|
|
- 'pypy3.9'
|
2024-06-28 01:18:32 +07:00
|
|
|
- 'pypy-2.7-v7.3.14'
|
|
|
|
- 'pypy-3.10-v7.3.15'
|
|
|
|
- 'pypy-3.10-v7.3.14'
|
|
|
|
- 'pypy-3.10-v7.3.x'
|
|
|
|
- 'pypy-3.10-v7.x'
|
|
|
|
- 'pypy-2.7-v7.3.12rc1'
|
|
|
|
- 'pypy-3.10-nightly'
|
|
|
|
- 'pypy3.10-v7.3.15'
|
2020-12-17 22:03:54 +07:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-11-08 17:16:06 +07:00
|
|
|
uses: actions/checkout@v4
|
2023-03-09 17:44:56 +07:00
|
|
|
|
2020-12-17 22:03:54 +07:00
|
|
|
- name: setup-python ${{ matrix.pypy }}
|
2022-05-24 01:59:37 +07:00
|
|
|
id: setup-python
|
2020-12-17 22:03:54 +07:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.pypy }}
|
2022-05-24 01:59:37 +07:00
|
|
|
|
|
|
|
- name: Check python-path
|
|
|
|
run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}'
|
|
|
|
shell: bash
|
|
|
|
|
2020-12-17 22:03:54 +07:00
|
|
|
- name: PyPy and Python version
|
|
|
|
run: python --version
|
2023-03-09 17:44:56 +07:00
|
|
|
|
2020-12-17 22:03:54 +07:00
|
|
|
- name: Run simple code
|
|
|
|
run: python -c 'import math; print(math.factorial(5))'
|
2022-04-28 20:26:17 +07: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 20:20:53 +07:00
|
|
|
EXECUTABLE=${EXECUTABLE/pypy-/pypy} # remove the first '-' in "pypy-X.Y" -> "pypyX.Y" to match executable name
|
2022-04-28 20:26:17 +07:00
|
|
|
EXECUTABLE=${EXECUTABLE%%-*} # remove any -* suffixe
|
|
|
|
${EXECUTABLE} --version
|
|
|
|
shell: bash
|
2022-06-29 22:00:51 +07:00
|
|
|
|
|
|
|
setup-pypy-noenv:
|
|
|
|
name: Setup PyPy ${{ matrix.pypy }} ${{ matrix.os }} (noenv)
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-04-04 21:18:24 +07:00
|
|
|
os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-latest]
|
2024-06-28 01:18:32 +07:00
|
|
|
pypy: ['pypy2.7', 'pypy3.9', 'pypy3.10-nightly']
|
2022-06-29 22:00:51 +07:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-11-08 17:16:06 +07:00
|
|
|
uses: actions/checkout@v4
|
2022-06-29 22:00:51 +07:00
|
|
|
|
|
|
|
- name: setup-python ${{ matrix.pypy }}
|
|
|
|
id: setup-python
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.pypy }}
|
|
|
|
update-environment: false
|
|
|
|
|
|
|
|
- name: PyPy and Python version
|
|
|
|
run: ${{ steps.setup-python.outputs.python-path }} --version
|
|
|
|
|
|
|
|
- name: Run simple code
|
|
|
|
run: ${{ steps.setup-python.outputs.python-path }} -c 'import math; print(math.factorial(5))'
|
2022-07-25 21:54:04 +07:00
|
|
|
|
|
|
|
check-latest:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
steps:
|
2023-11-08 17:16:06 +07:00
|
|
|
- uses: actions/checkout@v4
|
2022-07-25 21:54:04 +07:00
|
|
|
- name: Setup PyPy and check latest
|
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-28 01:18:32 +07:00
|
|
|
python-version: 'pypy-3.10-v7.3.x'
|
2022-07-25 21:54:04 +07:00
|
|
|
check-latest: true
|
|
|
|
- name: PyPy and Python version
|
|
|
|
run: python --version
|
|
|
|
|
|
|
|
- name: Run simple code
|
|
|
|
run: python -c 'import math; print(math.factorial(5))'
|
|
|
|
|
|
|
|
- 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: |
|
2024-06-28 01:18:32 +07:00
|
|
|
EXECUTABLE="pypy-3.10-v7.3.x"
|
2022-07-25 21:54:04 +07:00
|
|
|
EXECUTABLE=${EXECUTABLE/-/} # remove the first '-' in "pypy-X.Y" -> "pypyX.Y" to match executable name
|
|
|
|
EXECUTABLE=${EXECUTABLE%%-*} # remove any -* suffixe
|
|
|
|
${EXECUTABLE} --version
|
2022-12-22 19:02:09 +07:00
|
|
|
shell: bash
|
|
|
|
|
|
|
|
setup-pypy-multiple-versions:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
steps:
|
2023-11-08 17:16:06 +07:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-22 19:02:09 +07:00
|
|
|
- name: Setup PyPy and check latest
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: |
|
2024-06-28 01:18:32 +07:00
|
|
|
pypy-3.10-v7.3.x
|
|
|
|
pypy3.9
|
2022-12-22 19:02:09 +07:00
|
|
|
check-latest: true
|
|
|
|
- name: PyPy and Python version
|
|
|
|
run: python --version
|
|
|
|
|
|
|
|
- name: Run simple code
|
|
|
|
run: python -c 'import math; print(math.factorial(5))'
|
|
|
|
|
|
|
|
- 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: |
|
2024-06-28 01:18:32 +07:00
|
|
|
EXECUTABLE="pypy-3.10-v7.3.x"
|
2022-12-22 19:02:09 +07:00
|
|
|
EXECUTABLE=${EXECUTABLE/-/} # remove the first '-' in "pypy-X.Y" -> "pypyX.Y" to match executable name
|
|
|
|
EXECUTABLE=${EXECUTABLE%%-*} # remove any -* suffixe
|
|
|
|
${EXECUTABLE} --version
|
|
|
|
shell: bash
|
|
|
|
- name: Assert expected binaries (or symlinks) are present
|
|
|
|
run: |
|
2024-06-28 01:18:32 +07:00
|
|
|
EXECUTABLE='pypy3.9'
|
2022-12-22 19:02:09 +07:00
|
|
|
EXECUTABLE=${EXECUTABLE/pypy-/pypy} # remove the first '-' in "pypy-X.Y" -> "pypyX.Y" to match executable name
|
|
|
|
EXECUTABLE=${EXECUTABLE%%-*} # remove any -* suffixe
|
|
|
|
${EXECUTABLE} --version
|
2023-03-09 17:44:56 +07:00
|
|
|
shell: bash
|