Disable ARM64 tests until github publish ARM64 github runners

This commit is contained in:
hakril
2025-03-07 15:28:54 +01:00
parent 6c588cf723
commit 520fa864b8
+31 -31
View File
@@ -95,34 +95,34 @@ jobs:
seconds_between_github_writes: 10
seconds_between_github_reads: 1
tests_arm64:
needs: generate_ctypes
timeout-minutes: 15
runs-on: windows-ARM64
continue-on-error: true
strategy:
fail-fast: false
matrix:
python-version: [3.11]
python-architecture: [x86, x64, arm64]
include:
# Translate architecture to bitness for py.exe commandline
- python-bitness-to-test: 32
python-architecture: x86
- python-bitness-to-test: 64
python-architecture: x64
- python-bitness-to-test: arm64
python-architecture: arm64
steps:
- uses: actions/checkout@v4
- name: Listing python versions availables
run: py -0
- name: Testing PFW execute
run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -c "import windows; print(windows)"
- name: Arm64 pytests
run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -m pytest tests -k "not test_debugger" -v -s -r fEsx
# tests_arm64:
# needs: generate_ctypes
# timeout-minutes: 15
# runs-on: windows-ARM64
# continue-on-error: true
#
# strategy:
# fail-fast: false
# matrix:
# python-version: [3.11]
# python-architecture: [x86, x64, arm64]
# include:
# # Translate architecture to bitness for py.exe commandline
# - python-bitness-to-test: 32
# python-architecture: x86
# - python-bitness-to-test: 64
# python-architecture: x64
# - python-bitness-to-test: arm64
# python-architecture: arm64
#
# steps:
# - uses: actions/checkout@v4
#
# - name: Listing python versions availables
# run: py -0
#
# - name: Testing PFW execute
# run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -c "import windows; print(windows)"
#
# - name: Arm64 pytests
# run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -m pytest tests -k "not test_debugger" -v -s -r fEsx