[squeak-dev] Trouble running OSProcess on smalltalkCI for Windows/mingw

David T. Lewis lewis at mail.msen.com
Mon Jun 28 14:45:26 UTC 2021


Hi Christoph,

OSProcess for Windows is incomplete and most of the OSProcess/CommandShell
functionality that you see on unix (Linux, OS X) is not going to
work.

Levente's ProcessWrapper package may be more suitable:
  http://www.squeaksource.com/ProcessWrapper

I'm assuming you are running a Windows VM. If you are using a VM
for Linux, I don't know what will happen, but Windows does not
support the unix fork() semantics so I expect that there would
be limitations.

Dave


On Mon, Jun 28, 2021 at 01:28:13PM +0000, Thiede, Christoph wrote:
> Hi all,
> 
> 
> while setting up smalltalkCI for a project, I am having troubles getting OSProcess to run on a GitHub Actions runner for Windows.
> 
> 
> My test is as simple as:
> 
> 
> OSProcess waitForCommand: 'whoami'
> 
> 
> Which, normally, should print a small string to stdout and return after no longer than a few decisonds.
> 
> 
> However, in my smalltalkCI test for Windows, I just keep getting timeouts, even though the username is output correctly to the CI log.
> 
> I am installing OSProcess using:
> MCMcmUpdater updateFromRepository: 'http://www.squeaksource.com/OSProcess' baseName: MCMcmUpdater defaultBaseName interactive: false.
> <http://www.hpi.de/>
> I have ensured (via good old Transcript debugging) that the grimReaperProcess is running and not suspended.
> Also, there is not any other error message visible in the Transcript.
> 
> How could that be? As far as I know, the GitHub runner for Windows uses the git bash (mingw), so Windows executables and APIs are still available, but the shell is a different one.
> I could also reproduce the issue when running smalltalkCI from my local git bash (mingw). Interestingly, when using the "--headful" option to inspect the image manually, I can run all tests successfully, but when the tests are run automatically in the squeak::run_tests stage, they fail again.
> What is going on here?? At the moment, I feel somehow like at my wit's end ...
> 
> Did anyone of you already encountered a similar problem, or do you have any idea how to debug/solve the problem? Thanks in advance! :-)
> 
> Best,
> Christoph

> 



More information about the Squeak-dev mailing list