Skip to content

Commit bb44a12

Browse files
committed
clarify experimental sdk comment and flags
1 parent 64a94a9 commit bb44a12

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/windows_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ jobs:
2929
with:
3030
swift-version: development
3131
# Note: This snapshot includes the WindowsExperimental.sdk needed for static linking support,
32-
# this will be turned into Windows.sdk in the near future and $ExperimentalSDK code below will need to be updated
33-
# https://github.com/nicklockwood/SwiftFormat/pull/2265#discussion_r2496568069
32+
# this will be merged into Windows.sdk in the near future and $ExperimentalSDK related flags below will need to be removed
3433
swift-build: DEVELOPMENT-SNAPSHOT-2025-08-27-a
3534
update-sdk-modules: true
3635

@@ -40,7 +39,8 @@ jobs:
4039
- shell: pwsh
4140
run: |
4241
$ExperimentalSDK = "$(Split-Path -Path ${env:SDKROOT} -Parent)/WindowsExperimental.sdk"
43-
swift build --triple ${{ matrix.target-triple }} -c release -debug-info-format none -Xswiftc -sdk -Xswiftc ${ExperimentalSDK} -Xswiftc -static-stdlib
42+
swift build -c release --triple ${{ matrix.target-triple }} -debug-info-format none -Xswiftc -static-stdlib `
43+
-Xswiftc -sdk -Xswiftc ${ExperimentalSDK}
4444
4545
- uses: microsoft/setup-msbuild@v2.0.0
4646

0 commit comments

Comments
 (0)