Skip to content

Commit 05ce012

Browse files
committed
github: Run test-openmp on ARM too
1 parent b64b1c6 commit 05ce012

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

0 commit comments

Comments
 (0)