Skip to content

Commit 2be65d4

Browse files
committed
github: Run test-openmp on ARM too
1 parent d5b4244 commit 2be65d4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)