I have a Jenkins (1.493) project that uses the Jenkins PowerShell build step to execute a PowerShell script. Inside that script I want to invoke another script that is stored inside a file. I have now reduced it to the following:
Script inside Jenkins PowerShell build step:
& "\\stemmer.local\sidevelopment\cvdev\devbase\jenkins\PowerShell\Test.ps1"
Content of Test.ps1:
write-host 'Hello world!'
Whenever this Jenkins project executes, the PowerShell build step hangs indefinitely.
Things I have tried/verified so far:
- Adding some output before the invocation of
Test.ps1shows me that the Jenkins PowerShell script is being execute normally up to the point whereTest.ps1is called. - The file
Test.ps1exists and is reachable from the build slave that executes the script. If I alter the file's name, I get the expected error message from PowerShell... - Exchanging the " for ' in the 1st script does not change anything. Also, using dot-sourcing rather than
&does not help. - The file
Test.ps1can be executed properly from the powershell itself using the same command line that is being used in the Jenkins PowerShell script. - The execution policy for PowerShell has been set to
unrestrictedon my development host as well as on the Jenkins build slave. - I've tried replacing the PowerShell build step with a Windows batch command build step that looks like this:
powershell.exe -InputFormat None -File "\\stemmer.local\sidevelopment\cvdev\devbase\jenkins\PowerShell\Test.ps1"
and played around a little with the parameters of powershell.exe, but the results were - in those cases that were syntactically and otherwise correct as far as I can tell - always the same.
I only found few references to problems that sounded similar, but none of the approaches mentioned elsewhere did help me fix this. I am absolutely puzzled, and wondering whether someone encountered this issue before (and maybe even got a scenario like the one I have in mind running).
Thanks a lot for any input!
Volker