After setting up swift-DEVELOPMENT-SNAPSHOT-2025-04-03-a, running swift -v
command results in following error :
The process 'C:\Users\runneradmin\AppData\Local\Programs\Swift\Toolchains\0.0.0+Asserts\usr\bin\swift.exe' failed with exit code 3221225595
I am following the manual setup instructions: Swift.org - Manual Installation . Here is the complete logs: CI/CD · SwiftyLab/setup-swift@d4a0311 · GitHub
Any help on this error will be appreciated.
compnerd
(Saleem Abdulrasool)
May 8, 2025, 3:12am
2
$$
3221225595_{10} = 0xC000007B_{16}
0xC000007B & 0xf0000000 = 0x7b_{16}
0x7b_{16} = 123_{10}
$$
Windows Error 123 = The filename, directory name, or volume label syntax is incorrect.
As to why you are getting that, I don't really know. I'm not sure how that installation is being handled. I would recommend that you try to use GitHub - compnerd/gha-setup-swift: Setup Swift (on Windows) on GitHub Actions Builders for installing the toolchain.
compnerd
(Saleem Abdulrasool)
May 8, 2025, 3:51am
4
Error: Package download failed: Exception calling "DownloadFile" with "2" argument(s): "The remote server returned an error: (404) Not Found."
The URL is incorrect. You specified the branch as swift-development
instead of development
.
Will try with development
, the README seems to mention swift-development
: GitHub - compnerd/gha-setup-swift: Setup Swift (on Windows) on GitHub Actions Builders
branch
: (Note: this is not a git branch name) the Swift "version" to be installed. This may be either a pre-release branch (e.g. swift-5.5-branch
), a release branch (e.g. swift-5.5-release
) or the development branch (swift-development
).
compnerd
(Saleem Abdulrasool)
May 8, 2025, 4:19pm
7
That failure is likely due to some other changes that were made (i.e. missing dependencies). I think that a newer snapshot should have that repaired. But, we don't have that (CC: @mishal_shah ).
1 Like