Skip to content

Commit dbbbe00

Browse files
committed
[CI] Playing/Testing CI on Windows-ARM64
1 parent 2529ab8 commit dbbbe00

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

.github/workflows/tests.yml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,31 @@ jobs:
9898
timeout-minutes: 15
9999
runs-on: windows-ARM64
100100

101+
strategy:
102+
fail-fast: false
103+
matrix:
104+
python-version: 3.11
105+
python-architecture: [x86, x64, arm64]
106+
include:
107+
# Translate architecture to bitness for py.exe commandline
108+
- python-bitness-to-test: 32
109+
python-architecture: x86
110+
- python-bitness-to-test: 64
111+
python-architecture: x64
112+
- python-bitness-to-test: arm64
113+
python-architecture: arm64
114+
101115
steps:
102116
- uses: actions/checkout@v4
103117

104118
- name: Listing python versions availables
105-
run: py -0
119+
run: py -0
120+
121+
- name: Installing pytest
122+
run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -m pip install pytest
123+
124+
- name: Printing version
125+
run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -VV
126+
127+
- name: Testing PFW execute
128+
run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -c "import windows; print(windows)"

0 commit comments

Comments
 (0)