I uninstalled all existing Swift Toolchain before installing the Dev toolchain with the executable installer archived on the Jenkins build.
On face value, the toolchain looks good.
PS C:\Users\bkhouri\Documents> swift --version
Swift version 6.3-dev (LLVM 56997e37453eb73, Swift 1d61917ff1a98c2)
Target: x86_64-unknown-windows-msvc
Build config: +assertions
PS C:\Users\bkhouri\Documents> swift --help
OVERVIEW: Swift compiler
USAGE: swift
OPTIONS:
<...SNIP...>
However, none of the SwiftPM executable target do anything
PS C:\Users\bkhouri\Documents> swift build
PS C:\Users\bkhouri\Documents> swift test --help
PS C:\Users\bkhouri\Documents> swift package --help
PS C:\Users\bkhouri\Documents> swift run --help
I'm not familiar with Windows toolchain build nor what could cause this. The PR does not introduce any new library dependencies, but does add a new SwiftPM target.
Is anyone able to assist with this as we would like to have a toolchain available for the talk attendees as we want to collect feedback.
This could happen because you didn't restart your shell in between the uninstall and reinstall. The installer modifies the environment that will not be picked up in existing sessions. I would restart your computer and try again.