Skip to content

Commit 0a1f003

Browse files
committed
github: Run test-compiler-rt on ARM too
Since 3e56f5f41843204b6e612362542b77110f8f8188 in llvm-project, this should pass for all 4 architectures. (This doesn't pass in the pinned release version right now.)
1 parent 9eb743e commit 0a1f003

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -500,19 +500,21 @@ jobs:
500500
ninja
501501
ninja check-openmp
502502
503-
# Run the compiler-rt tests with the cross-built i686/x86_64 toolchains from
504-
# above. This also forces testing the bundled python executables.
503+
# Run the compiler-rt tests with the cross-built toolchains from above. This
504+
# also forces testing the bundled python executables.
505505
test-compiler-rt:
506506
# Only running these tests in scheduled builds.
507507
if: (github.event_name == 'schedule') && (github.repository == 'mstorsjo/llvm-mingw')
508508
needs: [linux-cross-windows, prepare]
509-
runs-on: windows-latest
510509
strategy:
511510
fail-fast: false
512511
matrix:
513512
arch:
514513
- x86_64
515514
- i686
515+
- armv7
516+
- aarch64
517+
runs-on: ${{startsWith(matrix.arch, 'a') && 'windows-11-arm' || 'windows-latest'}}
516518
steps:
517519
- name: Install dependencies
518520
run: |

0 commit comments

Comments
 (0)