-
Notifications
You must be signed in to change notification settings - Fork 49
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
'Win32' as an alias of 'x86' #26
Comments
The parameters are meant to mirror MSVC's batch script to be more familiar (and easier to implement), but I see no reason why they must be limited to the values supported by the MSVC's batch script. If that makes your life easier, I'd add them. The architecture names are a clusterfuck anyway, I don't see how a couple more would make things worse. |
I've just published |
Since this seems to be working and @PazerOP reacted with “👍”, I guess we're done here. |
There are quite a few bits during the setup and management of windows projects where your two options for architectures are
Win32
andx64
instead of the more logicalx86
andx64
.Is it possible that the
arch
parameter for this script could be made to also acceptWin32
as an alias ofx86
(andWin64
asx64
while we're at it)? This change would simplify some github actions scripts I have by a fair amount.The text was updated successfully, but these errors were encountered: