mirror of
https://github.com/actions/setup-python.git
synced 2025-06-27 21:23:48 +00:00
update test
This commit is contained in:
parent
0e3ceedf0d
commit
aba971c3a3
1 changed files with 41 additions and 41 deletions
82
.github/workflows/e2e-tests.yml
vendored
82
.github/workflows/e2e-tests.yml
vendored
|
@ -95,48 +95,48 @@ jobs:
|
|||
curl -L https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json | jq empty
|
||||
shell: bash
|
||||
|
||||
verify-install-path:
|
||||
name: Verify Install Path
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [windows-latest, windows-11-arm]
|
||||
architecture: [x64, x86, arm64]
|
||||
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13.1']
|
||||
freethreaded: ['false', 'true']
|
||||
exclude:
|
||||
- architecture: x64
|
||||
freethreaded: 'true'
|
||||
- python-version: '3.9'
|
||||
freethreaded: 'true'
|
||||
- python-version: '3.10'
|
||||
freethreaded: 'true'
|
||||
- python-version: '3.11'
|
||||
freethreaded: 'true'
|
||||
- python-version: '3.12'
|
||||
freethreaded: 'true'
|
||||
fail-fast: false
|
||||
verify-install-path:
|
||||
name: Verify Install Path
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [windows-latest, windows-11-arm]
|
||||
architecture: [x64, x86, arm64]
|
||||
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13.1']
|
||||
freethreaded: ['false', 'true']
|
||||
exclude:
|
||||
- architecture: x64
|
||||
freethreaded: 'true'
|
||||
- python-version: '3.9'
|
||||
freethreaded: 'true'
|
||||
- python-version: '3.10'
|
||||
freethreaded: 'true'
|
||||
- python-version: '3.11'
|
||||
freethreaded: 'true'
|
||||
- python-version: '3.12'
|
||||
freethreaded: 'true'
|
||||
fail-fast: false
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Init verify script
|
||||
shell: pwsh
|
||||
run: mv ./__tests__/verify_windows_install_path.ps1 .
|
||||
- name: Set up Python
|
||||
uses: ./
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
architecture: ${{ matrix.architecture }}
|
||||
freethreaded: ${{ matrix.freethreaded }}
|
||||
|
||||
- name: Set up Python
|
||||
uses: ./
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
architecture: ${{ matrix.architecture }}
|
||||
freethreaded: ${{ matrix.freethreaded }}
|
||||
- name: Init verify script
|
||||
shell: bash
|
||||
run: mv ./__tests__/verify_windows_install_path.ps1 .
|
||||
|
||||
- name: Verify Install Path
|
||||
shell: pwsh
|
||||
run: |
|
||||
Set-Location -Path $Env:GITHUB_WORKSPACE
|
||||
.\verify_windows_install_path.ps1 `
|
||||
${{ matrix.architecture }} `
|
||||
${{ matrix.freethreaded }} `
|
||||
${{ matrix.python-version }}
|
||||
- name: Verify Install Path
|
||||
shell: pwsh
|
||||
run: |
|
||||
Set-Location -Path $Env:GITHUB_WORKSPACE
|
||||
.\verify_windows_install_path.ps1 `
|
||||
${{ matrix.architecture }} `
|
||||
${{ matrix.freethreaded }} `
|
||||
${{ matrix.python-version }}
|
Loading…
Add table
Add a link
Reference in a new issue