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 @@ -434,19 +434,21 @@ jobs:
434434 ninja
435435 ninja check-cxx check-cxxabi check-unwind
436436
437- # Run the OpenMP tests with the cross-built i686/x86_64 toolchains from above.
437+ # Run the OpenMP tests with the cross-built toolchains from above.
438438 # This also forces testing the bundled python executables.
439439 test-openmp :
440440 # Only running these tests in scheduled builds.
441441 if : (github.event_name == 'schedule') && (github.repository == 'mstorsjo/llvm-mingw')
442442 needs : [linux-cross-windows, prepare]
443- runs-on : windows-latest
444443 strategy :
445444 fail-fast : false
446445 matrix :
447446 include :
448447 - { arch: i686, asmflag: }
449448 - { arch: x86_64, asmflag: -m64 }
449+ - { arch: armv7 }
450+ - { arch: aarch64 }
451+ runs-on : ${{startsWith(matrix.arch, 'a') && 'windows-11-arm' || 'windows-latest'}}
450452 steps :
451453 - name : Install dependencies
452454 run : |
You can’t perform that action at this time.
0 commit comments