mirror of
				https://gitea.com/actions/setup-python.git
				synced 2025-10-31 00:58:07 +07:00 
			
		
		
		
	Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			261 lines
		
	
	
		
			7.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			261 lines
		
	
	
		
			7.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Validate PyPy e2e
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - main
 | |
|     paths-ignore:
 | |
|       - '**.md'
 | |
|   pull_request:
 | |
|     paths-ignore:
 | |
|       - '**.md'
 | |
|   schedule:
 | |
|     - cron: 30 3 * * *
 | |
|   workflow_dispatch:
 | |
| 
 | |
| jobs:
 | |
|   setup-pypy:
 | |
|     name: Setup PyPy ${{ matrix.pypy }} ${{ matrix.os }}
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os:
 | |
|           [
 | |
|             macos-latest,
 | |
|             windows-latest,
 | |
|             ubuntu-22.04,
 | |
|             ubuntu-22.04-arm,
 | |
|             ubuntu-24.04-arm,
 | |
|             ubuntu-latest,
 | |
|             macos-13
 | |
|           ]
 | |
|         pypy:
 | |
|           - 'pypy-2.7'
 | |
|           - 'pypy-3.10'
 | |
|           - 'pypy3.9'
 | |
|           - 'pypy-2.7-v7.3.17'
 | |
|           - 'pypy-3.10-v7.3.17'
 | |
|           - 'pypy-3.10-v7.3.16'
 | |
|           - '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.17'
 | |
|           - 'pypy3.11-v7.3.19'
 | |
| 
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v5
 | |
| 
 | |
|       - name: setup-python ${{ matrix.pypy }}
 | |
|         id: setup-python
 | |
|         uses: ./
 | |
|         with:
 | |
|           python-version: ${{ matrix.pypy }}
 | |
| 
 | |
|       - name: Check python-path
 | |
|         run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}'
 | |
|         shell: bash
 | |
| 
 | |
|       - 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: |
 | |
|           EXECUTABLE=${{ matrix.pypy }}
 | |
|           EXECUTABLE=${EXECUTABLE/pypy-/pypy}  # remove the first '-' in "pypy-X.Y" -> "pypyX.Y" to match executable name
 | |
|           EXECUTABLE=${EXECUTABLE%%-*}  # remove any -* suffixe
 | |
|           ${EXECUTABLE} --version
 | |
|         shell: bash
 | |
| 
 | |
|   check-non-eol:
 | |
|     name: Check non-eol ${{ matrix.pypy }} on ${{ matrix.os }}
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os:
 | |
|           - macos-13
 | |
|           - macos-14
 | |
|           - macos-15
 | |
|           - windows-2022
 | |
|           - windows-2025
 | |
|           - ubuntu-22.04
 | |
|           - ubuntu-24.04
 | |
|           - ubuntu-22.04-arm
 | |
|           - ubuntu-24.04-arm
 | |
|         pypy: ['pypy-2.7', 'pypy-3.10', 'pypy-3.11']
 | |
| 
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v5
 | |
| 
 | |
|       - name: setup-python ${{ matrix.pypy }}
 | |
|         id: setup-python
 | |
|         uses: ./
 | |
|         with:
 | |
|           python-version: ${{ matrix.pypy }}
 | |
| 
 | |
|       - name: Check python-path
 | |
|         run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}'
 | |
|         shell: bash
 | |
| 
 | |
|       - 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: |
 | |
|           EXECUTABLE=${{ matrix.pypy }}
 | |
|           EXECUTABLE=${EXECUTABLE/pypy-/pypy}  # remove the first '-' in "pypy-X.Y" -> "pypyX.Y" to match executable name
 | |
|           EXECUTABLE=${EXECUTABLE%%-*}  # remove any -* suffixe
 | |
|           ${EXECUTABLE} --version
 | |
|         shell: bash
 | |
| 
 | |
|   setup-pypy-noenv:
 | |
|     name: Setup PyPy ${{ matrix.pypy }} ${{ matrix.os }} (noenv)
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os:
 | |
|           [
 | |
|             macos-latest,
 | |
|             windows-latest,
 | |
|             ubuntu-22.04,
 | |
|             ubuntu-22.04-arm,
 | |
|             ubuntu-24.04-arm,
 | |
|             ubuntu-latest,
 | |
|             macos-13
 | |
|           ]
 | |
|         pypy: ['pypy2.7', 'pypy3.9', 'pypy3.10-nightly', 'pypy3.11']
 | |
| 
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v5
 | |
| 
 | |
|       - 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))'
 | |
| 
 | |
|   check-latest:
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os:
 | |
|           [
 | |
|             macos-latest,
 | |
|             windows-latest,
 | |
|             ubuntu-22.04,
 | |
|             ubuntu-22.04-arm,
 | |
|             ubuntu-24.04-arm,
 | |
|             ubuntu-latest,
 | |
|             macos-13
 | |
|           ]
 | |
|     steps:
 | |
|       - uses: actions/checkout@v5
 | |
|       - name: Setup PyPy and check latest
 | |
|         uses: ./
 | |
|         with:
 | |
|           python-version: 'pypy-3.11-v7.3.x'
 | |
|           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: |
 | |
|           EXECUTABLE="pypy-3.11-v7.3.x"
 | |
|           EXECUTABLE=${EXECUTABLE/-/}  # remove the first '-' in "pypy-X.Y" -> "pypyX.Y" to match executable name
 | |
|           EXECUTABLE=${EXECUTABLE%%-*}  # remove any -* suffixe
 | |
|           ${EXECUTABLE} --version
 | |
|         shell: bash
 | |
| 
 | |
|   setup-pypy-multiple-versions:
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os:
 | |
|           [
 | |
|             macos-latest,
 | |
|             windows-latest,
 | |
|             ubuntu-22.04,
 | |
|             ubuntu-22.04-arm,
 | |
|             ubuntu-24.04-arm,
 | |
|             ubuntu-latest,
 | |
|             macos-13
 | |
|           ]
 | |
|     steps:
 | |
|       - uses: actions/checkout@v5
 | |
|       - name: Setup PyPy and check latest
 | |
|         uses: ./
 | |
|         with:
 | |
|           python-version: |
 | |
|             pypy-3.11-v7.3.x
 | |
|             pypy-3.10-v7.3.x
 | |
|             pypy3.9
 | |
|           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: |
 | |
|           EXECUTABLE="pypy-3.11-v7.3.x"
 | |
|           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: |
 | |
|           EXECUTABLE='pypy3.9'
 | |
|           EXECUTABLE=${EXECUTABLE/pypy-/pypy}  # remove the first '-' in "pypy-X.Y" -> "pypyX.Y" to match executable name
 | |
|           EXECUTABLE=${EXECUTABLE%%-*}  # remove any -* suffixe
 | |
|           ${EXECUTABLE} --version
 | |
|         shell: bash
 |