|
32 | 32 | "26.3": 'macos-15', |
33 | 33 | } |
34 | 34 |
|
35 | | - win_paltforms = ["x64", "Win32"] |
| 35 | + win_platforms = ["x64", "Win32"] |
36 | 36 | win_clang_archs = ["x64", "x86"] |
37 | 37 |
|
38 | 38 | gcc_map = { |
@@ -65,10 +65,13 @@ jobs: |
65 | 65 | for xcode, runon in macos_map.items(): |
66 | 66 | hosts.append({'os': runon, 'version': xcode, 'jobname': f'macOS - Xcode{xcode}'}) |
67 | 67 | |
68 | | - #windows |
69 | | - for platform in win_paltforms: |
| 68 | + #windows amd |
| 69 | + for platform in win_platforms: |
70 | 70 | hosts.append({'os': 'windows-latest', 'platform': platform, 'module': True, 'nopython': platform == "Win32", 'jobname': f'Windows - {platform}'}) |
71 | 71 | |
| 72 | + #windows arm |
| 73 | + hosts.append({'os': 'windows-11-arm', 'module': True, 'nopython': platform == "arm64", 'jobname': 'Windows - arm64'}) |
| 74 | +
|
72 | 75 | for arch in win_clang_archs: |
73 | 76 | hosts.append({'os': 'windows-latest', 'arch': arch, 'compiler': 'clang-cl', 'nopython': arch == "x86", 'jobname': f'Windows - clang - {arch}'}) |
74 | 77 | |
@@ -143,7 +146,7 @@ jobs: |
143 | 146 | echo "DEVELOPER_DIR=/Applications/Xcode_${{ matrix.version }}.app" >> $GITHUB_ENV |
144 | 147 | fi |
145 | 148 |
|
146 | | - if [[ '${{ matrix.os }}' == windows-* ]]; then |
| 149 | + if [[ '${{ matrix.os }}' == windows-latest ]]; then |
147 | 150 | if [[ '${{ matrix.compiler }}' != '' ]]; then |
148 | 151 | if [[ '${{ matrix.arch }}' == "x64" ]]; then |
149 | 152 | VCPREFIX="C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\Llvm\\x64\\bin" |
|
0 commit comments