Skip to content

Commit 071f3c7

Browse files
committed
Remove the separate config name, as it was identical
Also fix the default runner image name, don't use "windows-latest" but keep using "windows-2022" like we did before.
1 parent 2f6b104 commit 071f3c7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/libcxx-build-and-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,8 @@ jobs:
250250
- { config: mingw-static, mingw: true }
251251
- { config: mingw-dll-i686, mingw: true }
252252
- { config: mingw-incomplete-sysroot, mingw: true }
253-
- { config: mingw-static-aarch64, mingw: true, runner: windows-11-arm }
254-
runs-on: ${{ matrix.runner != '' && matrix.runner || 'windows-latest' }}
253+
- { config: mingw-static, mingw: true, runner: windows-11-arm }
254+
runs-on: ${{ matrix.runner != '' && matrix.runner || 'windows-2022' }}
255255
steps:
256256
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
257257
- name: Install dependencies

libcxx/utils/ci/run-buildbot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ mingw-dll)
706706
-C "${MONOREPO_ROOT}/libcxx/cmake/caches/MinGW.cmake"
707707
check-runtimes
708708
;;
709-
mingw-static|mingw-static-aarch64)
709+
mingw-static)
710710
clean
711711
generate-cmake \
712712
-C "${MONOREPO_ROOT}/libcxx/cmake/caches/MinGW.cmake" \

0 commit comments

Comments
 (0)