File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -437,19 +437,21 @@ jobs:
437437 ninja
438438 ninja ${{startsWith(matrix.arch, 'a') && 'check-cxx' || 'check-cxx check-cxxabi check-unwind'}}
439439
440- # Run the OpenMP tests with the cross-built i686/x86_64 toolchains from above.
440+ # Run the OpenMP tests with the cross-built toolchains from above.
441441 # This also forces testing the bundled python executables.
442442 test-openmp :
443443 # Only running these tests in scheduled builds.
444444 if : (github.event_name == 'schedule') && (github.repository == 'mstorsjo/llvm-mingw')
445445 needs : [linux-cross-windows, prepare]
446- runs-on : windows-latest
447446 strategy :
448447 fail-fast : false
449448 matrix :
450449 include :
451450 - { arch: i686, asmflag: }
452451 - { arch: x86_64, asmflag: -m64 }
452+ - { arch: armv7 }
453+ - { arch: aarch64 }
454+ runs-on : ${{startsWith(matrix.arch, 'a') && 'windows-11-arm' || 'windows-latest'}}
453455 steps :
454456 - name : Install dependencies
455457 run : |
You can’t perform that action at this time.
0 commit comments