Skip to content

Commit a817b52

Browse files
committed
Properly mark new MSVC as v143
1 parent 8527732 commit a817b52

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/testsuite.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# - CI_FORCE_LINUX_I386: if set to a true value: run the 'linux-i386' job;
1818
# - CI_FORCE_INSTALL: if set to a true value: run the 'install' job;
1919
# - CI_FORCE_MACOS: if set to a true value: run the 'smoke-macos-14' job;
20-
# - CI_FORCE_MSVC142: if set to a true value: run the 'windows-msvc142' job;
20+
# - CI_FORCE_MSVC143: if set to a true value: run the 'windows-msvc143' job;
2121
# - CI_FORCE_MINGW64: if set to a true value: run the 'mingw64' job;
2222
# - CI_FORCE_CYGWIN: if set to a true value: run the 'cygwin' job;
2323
# - CI_FORCE_MINITEST: if set to a true value: run the 'miniperl' job;
@@ -139,7 +139,7 @@ jobs:
139139
ci_force_linux_i386: ${{ steps.ci_config.outputs.ci_force_linux_i386 }}
140140
ci_force_install: ${{ steps.ci_config.outputs.ci_force_install }}
141141
ci_force_macos: ${{ steps.ci_config.outputs.ci_force_macos }}
142-
ci_force_msvc142: ${{ steps.ci_config.outputs.ci_force_msvc142 }}
142+
ci_force_msvc143: ${{ steps.ci_config.outputs.ci_force_msvc143 }}
143143
ci_force_mingw64: ${{ steps.ci_config.outputs.ci_force_mingw64 }}
144144
ci_force_cygwin: ${{ steps.ci_config.outputs.ci_force_cygwin }}
145145
ci_force_minitest: ${{ steps.ci_config.outputs.ci_force_minitest }}
@@ -160,7 +160,7 @@ jobs:
160160
CI_FORCE_LINUX_I386: ${{ vars.CI_FORCE_LINUX_I386 }}
161161
CI_FORCE_INSTALL: ${{ vars.CI_FORCE_INSTALL }}
162162
CI_FORCE_MACOS: ${{ vars.CI_FORCE_MACOS }}
163-
CI_FORCE_MSVC142: ${{ vars.CI_FORCE_MSVC142 }}
163+
CI_FORCE_MSVC143: ${{ vars.CI_FORCE_MSVC143 }}
164164
CI_FORCE_MINGW64: ${{ vars.CI_FORCE_MINGW64 }}
165165
CI_FORCE_CYGWIN: ${{ vars.CI_FORCE_CYGWIN }}
166166
CI_FORCE_MINITEST: ${{ vars.CI_FORCE_MINITEST }}
@@ -174,7 +174,7 @@ jobs:
174174
[[ -n "${CI_FORCE_LINUX_I386}" ]] && [[ "${CI_FORCE_LINUX_I386%[!0 ]*}" != "${CI_FORCE_LINUX_I386}" ]] && echo "ci_force_linux_i386=true" >> "$GITHUB_OUTPUT"
175175
[[ -n "${CI_FORCE_INSTALL}" ]] && [[ "${CI_FORCE_INSTALL%[!0 ]*}" != "${CI_FORCE_INSTALL}" ]] && echo "ci_force_install=true" >> "$GITHUB_OUTPUT"
176176
[[ -n "${CI_FORCE_MACOS}" ]] && [[ "${CI_FORCE_MACOS%[!0 ]*}" != "${CI_FORCE_MACOS}" ]] && echo "ci_force_macos=true" >> "$GITHUB_OUTPUT"
177-
[[ -n "${CI_FORCE_MSVC142}" ]] && [[ "${CI_FORCE_MSVC142%[!0 ]*}" != "${CI_FORCE_MSVC142}" ]] && echo "ci_force_msvc142=true" >> "$GITHUB_OUTPUT"
177+
[[ -n "${CI_FORCE_MSVC143}" ]] && [[ "${CI_FORCE_MSVC143%[!0 ]*}" != "${CI_FORCE_MSVC143}" ]] && echo "ci_force_msvc143=true" >> "$GITHUB_OUTPUT"
178178
[[ -n "${CI_FORCE_MINGW64}" ]] && [[ "${CI_FORCE_MINGW64%[!0 ]*}" != "${CI_FORCE_MINGW64}" ]] && echo "ci_force_mingw64=true" >> "$GITHUB_OUTPUT"
179179
[[ -n "${CI_FORCE_CYGWIN}" ]] && [[ "${CI_FORCE_CYGWIN%[!0 ]*}" != "${CI_FORCE_CYGWIN}" ]] && echo "ci_force_cygwin=true" >> "$GITHUB_OUTPUT"
180180
[[ -n "${CI_FORCE_MINITEST}" ]] && [[ "${CI_FORCE_MINITEST%[!0 ]*}" != "${CI_FORCE_MINITEST}" ]] && echo "ci_force_minitest=true" >> "$GITHUB_OUTPUT"
@@ -457,12 +457,12 @@ jobs:
457457
# \ V V / | ' \/ _` / _ \ V V (_-<
458458
# \_/\_/|_|_||_\__,_\___/\_/\_//__/
459459
460-
windows-msvc142:
461-
name: "Windows msvc142"
460+
windows-msvc143:
461+
name: "Windows msvc143"
462462
runs-on: windows-2025
463463
timeout-minutes: 120
464464
needs: sanity_check
465-
if: (! cancelled() && (needs.sanity_check.outputs.run_all_jobs == 'true' || needs.sanity_check.outputs.ci_force_msvc142 == 'true'))
465+
if: (! cancelled() && (needs.sanity_check.outputs.run_all_jobs == 'true' || needs.sanity_check.outputs.ci_force_msvc143 == 'true'))
466466
467467
steps:
468468
- run: git config --global core.autocrlf false
@@ -493,7 +493,7 @@ jobs:
493493
run: |
494494
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
495495
cd win32
496-
nmake CCTYPE=MSVC142 CFG=Debug
496+
nmake CCTYPE=MSVC143 CFG=Debug
497497
- name: Show Config
498498
shell: cmd
499499
run: |
@@ -504,7 +504,7 @@ jobs:
504504
run: |
505505
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
506506
cd win32
507-
nmake CCTYPE=MSVC142 CFG=Debug test
507+
nmake CCTYPE=MSVC143 CFG=Debug test
508508
509509
# _ __ _ _
510510
# _ __ ___ (_)_ __ __ ___ __/ /_ | || |

0 commit comments

Comments
 (0)