-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add support for newer Windows SDKs #72
base: main
Are you sure you want to change the base?
Changes from all commits
ffd9b03
5565d3f
f4343a9
63eac44
b48af66
1d3c38f
e2b56f4
d1e443e
4ea245a
1ceff75
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,17 +11,20 @@ import {Installation} from './installation' | |
|
||
export class WindowsToolchainInstaller extends VerifyingToolchainInstaller<WindowsToolchainSnapshot> { | ||
private get vsRequirement() { | ||
const reccommended = '10.0.17763' | ||
const recommended = '10.0.19041' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any reason for this change? Swift.org mentions There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IIRC Windows 10 SDK (10.0.17763) is the default of Visual Studio 2017, which is long outdated and has compatibility issues with even VS 2019. Official Swift toolchains and SDKs are actually built against the newest setup, which means Windows 11 SDK (10.0.22621) for Swift 5.9. I actually think Windows 11 SDK (10.0.22000) is better since it’s the default of Visual Studio 2022, but 19041 is new enough for now. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The current logic uses the grater SDK version between current platform and This variable should be the lowest SDK version supported by Swift, not the latest one. Otherwise action will download the SDK unnecessarily, when it can reuse pre-installed SDK version. |
||
const current = os.release() | ||
const version = semver.gte(current, reccommended) ? current : reccommended | ||
const winsdk = semver.patch(version) | ||
const version = semver.gte(current, recommended) ? current : recommended | ||
const winsdkMajor = semver.lt(version, '10.0.22000') | ||
? semver.major(version) | ||
: 11 | ||
const winsdkMinor = semver.patch(version) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please extract the windows major version logic to a separate function, it will be easier to update in future. |
||
const componentsStr = core.getInput('visual-studio-components') | ||
const providedComponents = componentsStr ? componentsStr.split(';') : [] | ||
return { | ||
version: '16', | ||
components: [ | ||
'Microsoft.VisualStudio.Component.VC.Tools.x86.x64', | ||
`Microsoft.VisualStudio.Component.Windows10SDK.${winsdk}`, | ||
`Microsoft.VisualStudio.Component.Windows${winsdkMajor}SDK.${winsdkMinor}`, | ||
...providedComponents | ||
] | ||
} | ||
|
@@ -71,6 +74,7 @@ export class WindowsToolchainInstaller extends VerifyingToolchainInstaller<Windo | |
} | ||
core.debug(`Swift installed at "${swiftPath}"`) | ||
const visualStudio = await VisualStudio.setup(this.vsRequirement) | ||
// FIXME(stevapple): This is no longer required for Swift 5.9+ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are you planning to address this in current PR or in a future PR? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A future PR I think. Needs to figure out how to pass the version around, so it might be a big fix. |
||
await visualStudio.update(installation.sdkroot) | ||
const swiftFlags = `-sdk %SDKROOT% -I %SDKROOT%/usr/lib/swift -L %SDKROOT%/usr/lib/swift/windows` | ||
core.exportVariable('SWIFTFLAGS', swiftFlags) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add
windows-2019
withlatest
swift as well