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