-
Notifications
You must be signed in to change notification settings - Fork 157
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
Failing Cpack during creating temp dir #67
Comments
Please try to launch it in verbose mode or with a debug option, and add more details on the action you are trying to run. |
@uraimo
I did runned cpack with both options
Only thing so far that brought my attention is this:
|
@uraimo I have used NSIS + CPack + Qt + CMake + VS2019 in my own project and encountered the same problem as you, did you solve it later? |
I did small search in Cmake Source Code and found where it fails: if (!cmsys::SystemTools::MakeDirectory(bareTempInstallDirectory)) {
cmCPackLogger(cmCPackLog::LOG_ERROR,
"Problem creating temporary directory: "
<< (tempInstallDirectory ? tempInstallDirectory : "(NULL)")
<< std::endl);
return 0;
} Will have to dig deeper inside |
@rafal1137 Thanks for your answer, it was a lot of fun 😄, maybe I can build it successfully locally first before trying GH Action. PS:I will keep trying it when I get my PC (Win10) back in my hands a little later |
Hi there. I am using your action in 1 of project that I participate.
I am having issue with executing cpack
PS: We have several jobs with no issues just it fails with that one.
The text was updated successfully, but these errors were encountered: