Skip to content

Commit 9eb743e

Browse files
committed
github: Run test-openmp on ARM too
1 parent d7d9021 commit 9eb743e

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
@@ -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: |

0 commit comments

Comments
 (0)