buildwin.ps1 script error building the x64 version of Poco#3749
buildwin.ps1 script error building the x64 version of Poco#3749aleks-f merged 23 commits intopocoproject:develfrom
Conversation
If build x64 the scripts looks for the _x64.vcproj Files which no longer exists. By removing this the Build is possible. If only the Build Tools for Visual Studio are available the script does not run because those are not recognized by the Select-VSSetupInstance Script. Adding the parameter `-product *` also recognizes the Build Tools.
|
Ok i will try to add the entry |
|
@aleks-f i tried to add the CI Section but it seems on the Actions Job Run the |
|
@aleks-f i test it again with the |
fix omit array presence printout
|
@aleks-f ok i solved that issue. It seems like in the github actions the |
Changed the Components Seperator to only accept the `;`
I'd go with |
|
now you have some joy with VS2022. try to comment out other CI entries so that a push triggers run only of the entries you are working on, not the whole world |
let's not goo too crazy with CI entries
buildwin.ps1 failed to build x64 #3740 If build x64 the scripts looks for the _x64.vcproj Files which no longer exists. By removing this the Build is possible. If only the Build Tools for Visual Studio are available the script does not run because those are not recognized by the Select-VSSetupInstance Script. Adding the parameter `-product *` also recognizes the Build Tools. * Removed unused Parameter `platformName` * Added New CI targets for building poco with the buildwin.ps1 script Co-authored-by: Jan Kevin Dick <Jan.Dick@de.bosch.com> Co-authored-by: Aleksandar Fabijanic <aleks-f@users.noreply.github.com>
If build x64 the scripts looks for the _x64.vcproj Files which no longer exists. By removing this the Build is possible.
If only the Build Tools for Visual Studio are available the script does not run because those are not recognized by the Select-VSSetupInstance Script.
Adding the parameter
-product *also recognizes the Build Tools.#3740