Skip to content

Commit be823e6

Browse files
authored
[CI] Fix the Windows 6.0 check name (#2941)
# Motivation Currently, the Windows 6.0 check name includes the matrix properties. # Modification This PR makes it dynamic with the swift version again. # Result Aligned CI check names across platforms.
1 parent 6d24ab0 commit be823e6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/swift_matrix.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
curl -s https://raw.githubusercontent.com/apple/swift-nio/main/scripts/check-matrix-job.sh | bash
150150
151151
windows:
152-
name: Windows (6.0)
152+
name: Windows (${{ matrix.swift.swift_version }})
153153
runs-on: windows-2022
154154
strategy:
155155
fail-fast: false
@@ -159,7 +159,6 @@ jobs:
159159
- image: swift:6.0-windowsservercore-ltsc2022
160160
swift_version: "6.0"
161161
enabled: ${{ inputs.matrix_windows_6_0_enabled }}
162-
if: ${{ inputs.matrix_windows_6_0_enabled }}
163162
steps:
164163
- name: Pull Docker image
165164
if: ${{ matrix.swift.enabled }}
@@ -191,7 +190,6 @@ jobs:
191190
- image: swiftlang/swift:nightly-main-windowsservercore-1809
192191
swift_version: "nightly-main"
193192
enabled: ${{ inputs.matrix_windows_nightly_main_enabled }}
194-
if: (${{ inputs.matrix_windows_nightly_6_0_enabled }} || ${{ inputs.matrix_windows_nightly_main_enabled }})
195193
steps:
196194
- name: Pull Docker image
197195
if: ${{ matrix.swift.enabled }}

0 commit comments

Comments
 (0)